RssR: Rss Feed Notifier
Grab recent article headlines from RSS feeds
RssR: Rss Feed Notifierคืออะไร?
RssR: Rss Feed Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ruben Medina และคุณลักษณะหลักของมันคือ "Grab recent article headlines from RSS feeds"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RssR: Rss Feed Notifier
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| 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"
]
} | |