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

Side by Side Diff: chrome/common/extensions/docs/examples/api/storage/stylizr/manifest.json

Issue 9691033: Update the Stylizr example to work with the manifest changes the Storage API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 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": "Stylizr", 2 "name": "Stylizr",
3 "description": "Spruce up your pages with custom CSS.", 3 "description": "Spruce up your pages with custom CSS.",
4 "version": "1.0", 4 "version": "1.0",
5 5
6 "permissions": [ 6 "permissions": [
7 "storage",
7 "tabs", 8 "tabs",
8 "<all_urls>", 9 "<all_urls>"
9 "experimental"
10 ], 10 ],
11 11
12 "options_page": "options.html", 12 "options_page": "options.html",
13 13
14 "browser_action": { 14 "browser_action": {
15 "default_icon": "icon.png", 15 "default_icon": "icon.png",
16 "default_title": "Stylize!", 16 "default_title": "Stylize!",
17 "default_popup": "popup.html" 17 "default_popup": "popup.html"
18 }, 18 },
19 19
20 "manifest_version": 2 20 "manifest_version": 2
21 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698