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

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

Issue 115536: Add the RSS page action extension.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/samples/subscribe_page_action/manifest.json
===================================================================
--- chrome/test/data/extensions/samples/subscribe_page_action/manifest.json (revision 0)
+++ chrome/test/data/extensions/samples/subscribe_page_action/manifest.json (revision 0)
@@ -0,0 +1,26 @@
+{
+ "name": "RSS Subscription Extension",
+ "description": "Adds one-click subscription to your toolbar",
+ "version": "1.0",
+ "permissions": [
+ "http://*/*"
+ ],
+ "toolstrips": [
+ "toolstrip.html"
+ ],
+ "content_scripts": [
+ {
+ "matches": ["http://*/*"],
+ "js": ["feed_finder.js"]
+ }
+ ],
+ "page_actions": [
+ {
+ "id": "RssPageAction",
+ "name": "The PageAction for RSS subscriptions",
+ "tooltip": "Click to subscribe to this feed",
+ "icon": "feed-icon-16x16.png",
+ "type": "tab"
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698