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

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

Issue 10217016: Event page rebranding: "transient" key is now "persistent" again. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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": "Transient Page Example", 2 "name": "Transient Page Example",
3 "description": "Demonstrates usage and features of the transient page", 3 "description": "Demonstrates usage and features of the transient page",
4 "version": "1.0", 4 "version": "1.0",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "permissions": ["tabs", "bookmarks", "experimental", "http://*.google.com/*"], 6 "permissions": ["tabs", "bookmarks", "experimental", "http://*.google.com/*"],
7 "background": { 7 "background": {
8 "scripts": ["background.js"], 8 "scripts": ["background.js"],
9 "transient": true 9 "persistent": false
10 }, 10 },
11 "browser_action": { 11 "browser_action": {
12 "default_icon" : "icon.png", 12 "default_icon" : "icon.png",
13 "default_title": "Start Transient Page" 13 "default_title": "Start Transient Page"
14 } 14 }
15 } 15 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/examples/api/transientPage/basic.zip ('k') | chrome/common/extensions/docs/samples.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698