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

Side by Side Diff: chrome/test/data/extensions/api_test/active_tab/manifest.json

Issue 890083002: [Extensions] Propagate activeTab hosts to extension background pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
OLDNEW
1 { 1 {
2 "name": "activeTab", 2 "name": "activeTab",
3 "description": "API test for activeTab", 3 "description": "API test for activeTab",
4 "version": "0.1", 4 "version": "0.1",
5 5
6 "browser_action": { 6 "browser_action": {
7 "default_title": "activeTab" 7 "default_title": "activeTab"
8 }, 8 },
9 9
10 "permissions": [ 10 "permissions": [
11 "activeTab", 11 "activeTab",
12 "webNavigation" 12 "webNavigation"
13 ], 13 ],
14 14
15 "background": { 15 "background": {
16 "scripts": ["background.js"] 16 "scripts": ["background.js"]
17 }, 17 },
18 18
19 "automation": true, 19 "automation": true,
20 20
21 "manifest_version": 2 21 "manifest_version": 2,
22
23 "web_accessible_resources": [ "iframe.html" ]
22 } 24 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/active_tab/iframe.js ('k') | extensions/browser/extension_web_contents_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698