Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: chrome/test/data/extensions/api_test/automation/tests/tabs/manifest.json

Issue 308003003: Allow requesting Automation tree by tabId (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unnecessary content script from tests Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "chrome.automation.sanityCheck", 2 "name": "chrome.automation.sanityCheck",
3 "version": "0.1", 3 "version": "0.1",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "description": "Tests for the Automation API.", 5 "description": "Tests for the Automation API.",
6 "content_scripts": [
7 {
8 "matches": [ "<all_urls>" ],
9 "js": [ "content.js" ],
10 "run_at": "document_end"
11 }
12 ],
13 "permissions": ["tabs", "http://a.com/"], 6 "permissions": ["tabs", "http://a.com/"],
14 "automation": {"interact": true} 7 "automation": {"interact": true}
15 } 8 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698