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

Unified Diff: chrome/test/data/extensions/subscribe_page_action/manifest.json

Issue 12843037: Convert the RSS extension to event pages to avoid a dedicated background process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/subscribe_page_action/manifest.json
===================================================================
--- chrome/test/data/extensions/subscribe_page_action/manifest.json (revision 192805)
+++ chrome/test/data/extensions/subscribe_page_action/manifest.json (working copy)
@@ -1,5 +1,6 @@
{
"background": {
+ "persistent": false,
"scripts": [ "background.js" ]
},
"content_scripts": [ {
@@ -23,7 +24,7 @@
"default_popup": "popup.html",
"default_title": "__MSG_rss_subscription_default_title__"
},
- "permissions": [ "tabs", "http://*/*", "https://*/*" ],
- "version": "2.2.1",
+ "permissions": [ "tabs", "http://*/*", "https://*/*", "storage" ],
+ "version": "2.2.2",
"web_accessible_resources": [ "iframe.js", "style.css" ]
}

Powered by Google App Engine
This is Rietveld 408576698