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

Side by Side Diff: chrome/common/extensions/docs/examples/api/omnibox/extension-docs/manifest.json

Issue 7633017: Adding content_security_policy to sample extensions when relevant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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" : "Extension Docs Search", 2 "name" : "Extension Docs Search",
3 "description" : "Search the Chrome Extensions documentation. To use, type 'cr doc' plus a search term into the Omnibox.", 3 "description" : "Search the Chrome Extensions documentation. To use, type 'cr doc' plus a search term into the Omnibox.",
4 "version" : "1.0.0", 4 "version" : "1.0.0",
5 "permissions" : [ 5 "permissions" : [
6 "http://src.chromium.org/viewvc/*", 6 "http://src.chromium.org/viewvc/*",
7 "tabs" 7 "tabs"
8 ], 8 ],
9 "icons" : { 9 "icons" : {
10 "16" : "icon-16.png", 10 "16" : "icon-16.png",
11 "128" : "icon-128.png" 11 "128" : "icon-128.png"
12 }, 12 },
13 "omnibox": { "keyword" : "crdoc" }, 13 "omnibox": { "keyword" : "crdoc" },
14 "background_page" : "background.html" 14 "background_page" : "background.html",
15 "content_security_policy": "default-src 'self' http://src.chromium.org"
abarth-chromium 2011/08/12 22:08:00 What sort of resources does this extension load fr
15 } 16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698