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

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

Issue 10949017: Allow extensions which can run without NPAPI to run under Windows 8 Metro. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch cross-origin-XHR all-URLs test for ChromeOS. Created 8 years, 3 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": "Cross origin XHR with plugin.", 2 "name": "Cross origin XHR with plugin.",
3 "version": "1.0", 3 "version": "1.0",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "description": "Tests bug #98418", 5 "description": "Tests bug #98418",
6 "background": { 6 "background": {
7 "page": "test.html" 7 "page": "test.html"
8 }, 8 },
9 "content_scripts": [{ 9 "content_scripts": [{
10 "matches": ["<all_urls>"], 10 "matches": ["<all_urls>"],
11 "js": ["content_script.js"], 11 "js": ["content_script.js"],
12 "run_at": "document_start" 12 "run_at": "document_start"
13 }], 13 }],
14 "permissions": [ "<all_urls>" ], 14 "permissions": [ "<all_urls>" ],
15 "plugins": [ 15 "plugins": [
16 {"path": "plugin.dll", "public": true} 16 {"path": "plugin.dll", "public": true}
17 ] 17 ],
18 "requirements": {
19 "plugins": {
20 "npapi": false
21 }
22 }
18 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698