RssR: Rss Feed Notifier
Grab recent article headlines from RSS feeds
什麼是RssR: Rss Feed Notifier?
RssR: Rss Feed Notifier是由Ruben Medina開發的Chrome擴展程式,該擴展的主要功能是“Grab recent article headlines from RSS feeds”。
擴展截圖
下載RssR: Rss Feed Notifier擴展crx文件
下載RssR: Rss Feed Notifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | meaiakcahjfecljnnnjbmnmdmofbjgmg |
| 官方網址 | 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"
]
} | |