Feedly Subscriber
One-click subscribe with Feedly
What is Feedly Subscriber?
Feedly Subscriber is a Chrome extension developed by p3lim, and its main feature is "One-click subscribe with Feedly".
Extension Screenshots
Download Feedly Subscriber Extension CRX File
Download Feedly Subscriber extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Feedly Subscriber is a Chrome extension for Feedly, which allows you to easily add new feeds, one click away! I made this as a superior alternative to Google's RSS subscription extension, specifically for Feedly. Also, see my Feedly Counter extension: http://bit.ly/feedly-counter
Extension Basic Information
Name | Feedly Subscriber |
ID | kflhgnleiaemnemmnbfndohdoabfnock |
Official URL | https://chromewebstore.google.com/detail/feedly-subscriber/kflhgnleiaemnemmnbfndohdoabfnock |
Description | One-click subscribe with Feedly |
File Size | 9.66 KB |
Installation Count | 429 |
Current Version | 1.1.0 |
Last Updated | 2015-01-30 |
Publish Date | 2015-01-30 |
Rating | 4.55/5 Total 20 Ratings |
Developer | p3lim |
Payment Type | free |
Extension Website | https://github.com/p3lim/feedly-subscriber |
Help Page URL | https://github.com/p3lim/feedly-subscriber/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Feedly Subscriber", "description": "One-click subscribe with Feedly", "version": "1.1.0", "icons": { "128": "images\/icon128.png", "48": "images\/icon48.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/sniffer.js" ] } ], "page_action": { "default_icon": "images\/icon48.png", "default_popup": "popup.html" }, "background": { "scripts": [ "scripts\/background.js" ] } } |