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

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

Issue 10916075: Rewrite notifications documentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: blech Created 8 years, 3 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
« no previous file with comments | « no previous file | chrome/common/extensions/docs/server2/static/css/site.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "Notification Demo", 2 "name": "Notification Demo",
3 "version": "1", 3 "version": "1",
4 "description": 4 "description":
5 "Shows off desktop notifications, which are \"toast\" windows that pop up on the desktop.", 5 "Shows off desktop notifications, which are \"toast\" windows that pop up on the desktop.",
6 "icons": {"16": "16.png", "48": "48.png", "128": "128.png"}, 6 "icons": {"16": "16.png", "48": "48.png", "128": "128.png"},
7 "permissions": ["tabs", "notifications"], 7 "permissions": ["tabs", "notifications"],
8 "options_page": "options.html", 8 "options_page": "options.html",
9 "background": { "scripts": ["background.js"] }, 9 "background": { "scripts": ["background.js"] },
10 "manifest_version": 2 10 "manifest_version": 2,
11
12 // crbug.com/134315
13 "web_accessible_resources": [
14 "48.png"
15 ]
11 } 16 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/server2/static/css/site.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698