RssR: Rss Feed Notifier
Grab recent article headlines from RSS feeds
RssR: Rss Feed Notifier क्या है?
RssR: Rss Feed Notifier Ruben Medina द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Grab recent article headlines from RSS feeds"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में RssR: Rss Feed Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Frustrated by existing RSS reading extensions, I decided to create my own in a soviet inspired design: RssR! RssR is an RSS Feed Notifier. You add RSS feeds you want to keep track of and the extension automatically checks for newly posted articles to those feeds, then adds a spiffy NEW badge to the extension icon when it finds some! Clicking the icon opens a popup menu that shows the new articles grouped by RSS feed that you can easily scan through and open. RSS Feeds are updated every 15 minutes. A max of 5 articles per feed are displayed at a time. Feeds are synced across browsers when logged in to Chrome. Source code is available here: https://github.com/samrum/RssR
एक्सटेंशन की मूल जानकारी
नाम | RssR: Rss Feed Notifier |
ID | meaiakcahjfecljnnnjbmnmdmofbjgmg |
आधिकारिक URL | https://chromewebstore.google.com/detail/rssr-rss-feed-notifier/meaiakcahjfecljnnnjbmnmdmofbjgmg |
विवरण | Grab recent article headlines from RSS feeds |
फ़ाइल का आकार | 94.16 KB |
स्थापना संख्या | 397 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2022-05-02 |
प्रकाशन तिथि | 2016-10-18 |
रेटिंग | 3.77/5 कुल 13 रेटिंग्स |
डेवलपर | Ruben Medina |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RssR: Rss Feed Notifier", "short_name": "RssR", "description": "Grab recent article headlines from RSS feeds", "version": "1.0.1", "author": "Ruben Medina", "browser_action": { "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" }, "default_popup": "popup.html" }, "icons": { "128": "icons\/128.png", "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "64": "icons\/64.png" }, "background": { "scripts": [ "js\/Storage.js", "js\/FeedService.js", "js\/background.js", "js\/jquery-2.1.4.min.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "*:\/\/*\/*", "alarms", "storage" ] } |