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

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

Issue 8869003: Move the "extension" namespace from extension_api.json into extension_api_extension.json. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build.py again? Created 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 "name" : "Extension Docs Search",
3 "description" : "Search the Chrome Extensions documentation. To use, type 'cr doc' plus a search term into the Omnibox.",
4 "version" : "1.0.0",
5 "permissions" : [
6 "https://src.chromium.org/viewvc/*",
7 "tabs"
8 ],
9 "icons" : {
10 "16" : "icon-16.png",
11 "128" : "icon-128.png"
12 },
13 "omnibox": { "keyword" : "crdoc" },
14 "background_page" : "background.html",
15 "content_security_policy": "connect-src https://src.chromium.org"
16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698