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

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

Issue 9289057: Changing manifest to v2 extension samples (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Adding zip files after rebasing with master Created 8 years, 10 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 "name": "Top Chrome Extension Questions", 2 "name": "Top Chrome Extension Questions",
3 "version": "0.1", 3 "version": "0.2",
4 "description": "Sample demonstration of the optional permissions API.", 4 "description": "Sample demonstration of the optional permissions API.",
5 "icons": { 5 "icons": {
6 "128": "images/icon.png", 6 "128": "images/icon.png",
7 "48": "images/icon.png", 7 "48": "images/icon.png",
8 "16": "images/icon.png" 8 "16": "images/icon.png"
9 }, 9 },
10 "browser_action": { 10 "browser_action": {
11 "default_icon": "images/icon.png", 11 "default_icon": "images/icon.png",
12 "default_popup": "popup.html" 12 "default_popup": "popup.html"
13 }, 13 },
14 "options_page": "options.html", 14 "options_page": "options.html",
15 "permissions": ["experimental"], 15 "permissions": ["experimental"],
16 "optional_permissions": ["http://api.stackoverflow.com/"] 16 "optional_permissions": ["http://api.stackoverflow.com/"],
17 "manifest_version": 2
17 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698