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

Side by Side Diff: chrome/test/data/extensions/ui/create_extension_detail_value_expected_output/good-extension1.json

Issue 430003: Revert change that disallowed content scripts access to file:// (Closed)
Patch Set: Can't go back, only through Created 11 years 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 "id": "behllobkkfkfnphdnhnkndlbkcpglgmj", 2 "id": "behllobkkfkfnphdnhnkndlbkcpglgmj",
3 "version": "1.0.0.0", 3 "version": "1.0.0.0",
4 "name": "My extension 1", 4 "name": "My extension 1",
5 "enabled": true, 5 "enabled": true,
6 "description": "The first extension that I made.", 6 "description": "The first extension that I made.",
7 "permissions": ["http://*.google.com/*", "https://*.google.com/*"], 7 "permissions": ["http://*.google.com/*", "https://*.google.com/*"],
8 "allow_reload": false, 8 "allow_reload": false,
9 "order": 2, 9 "order": 2,
10 "content_scripts": [ 10 "content_scripts": [
11 { 11 {
12 "matches": ["http://*.google.com/*", "https://*.google.com/*", "http://loc alhost/*"], 12 "matches": ["file://*", "http://*.google.com/*", "https://*.google.com/*"] ,
13 "js": ["script1.js", "script2.js"], 13 "js": ["script1.js", "script2.js"],
14 "css": ["style1.css", "style2.css", "style2.css"] 14 "css": ["style1.css", "style2.css", "style2.css"]
15 }, 15 },
16 { 16 {
17 "matches": ["http://*.news.com/*"], 17 "matches": ["http://*.news.com/*"],
18 "js": ["js_files/script3.js"] 18 "js": ["js_files/script3.js"]
19 } 19 }
20 ], 20 ],
21 "views": [ 21 "views": [
22 { 22 {
23 "path": "bar.html", 23 "path": "bar.html",
24 "render_proess_id": 42, 24 "render_proess_id": 42,
25 "render_view_id": 88 25 "render_view_id": 88
26 }, 26 },
27 { 27 {
28 "path": "dog.html", 28 "path": "dog.html",
29 "render_proess_id": 0, 29 "render_proess_id": 0,
30 "render_view_id": 0 30 "render_view_id": 0
31 } 31 }
32 ] 32 ]
33 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698