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

Side by Side Diff: chrome/common/extensions/docs/templates/json/manifest.json

Issue 1158693006: Create a mechanism define declarative rules via the extension manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add thread safety to extensionregistry notifications Created 5 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
OLDNEW
1 { 1 {
2 "app": { 2 "app": {
3 "documentation": "manifest/app", 3 "documentation": "manifest/app",
4 "example": {}, 4 "example": {},
5 "level": "required" 5 "level": "required"
6 }, 6 },
7 "app.background": { 7 "app.background": {
8 "example": {"scripts": ["background.js"]}, 8 "example": {"scripts": ["background.js"]},
9 "level": "required" 9 "level": "required"
10 }, 10 },
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 }, 63 },
64 "description": { 64 "description": {
65 "documentation": "manifest/description", 65 "documentation": "manifest/description",
66 "example": "A plain text description", 66 "example": "A plain text description",
67 "level": "recommended" 67 "level": "recommended"
68 }, 68 },
69 "devtools_page": { 69 "devtools_page": {
70 "documentation": "devtools", 70 "documentation": "devtools",
71 "example": "devtools.html" 71 "example": "devtools.html"
72 }, 72 },
73 "event_rules": {
74 "documentation": "manifest/event_rules",
75 "example": [{}]
76 },
73 "export": { 77 "export": {
74 "documentation": "shared_modules", 78 "documentation": "shared_modules",
75 "example": {} 79 "example": {}
76 }, 80 },
77 "externally_connectable": { 81 "externally_connectable": {
78 "documentation": "manifest/externally_connectable", 82 "documentation": "manifest/externally_connectable",
79 "example": { 83 "example": {
80 "matches": ["*://*.example.com/*"] 84 "matches": ["*://*.example.com/*"]
81 } 85 }
82 }, 86 },
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 }, 243 },
240 "web_accessible_resources": { 244 "web_accessible_resources": {
241 "documentation": "manifest/web_accessible_resources", 245 "documentation": "manifest/web_accessible_resources",
242 "example": [] 246 "example": []
243 }, 247 },
244 "webview": { 248 "webview": {
245 "documentation": "tags/webview#local_resources", 249 "documentation": "tags/webview#local_resources",
246 "example": {} 250 "example": {}
247 } 251 }
248 } 252 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698