Feedbin Notifier
Provides a basic notification service for the RSS aggregator Feedbin.
Feedbin Notifierคืออะไร?
Feedbin Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thunraz และคุณลักษณะหลักของมันคือ "Provides a basic notification service for the RSS aggregator Feedbin."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feedbin Notifier
ดาวน์โหลดไฟล์ส่วนขยาย Feedbin Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Feedbin Notifier shows how many unread feeds you have in your Feedbin account. Just enter your login credentials, hit Save and you're good to go! While reading through the articles in Feedbin, the unread items badge on the extension is updated live.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Feedbin Notifier |
ID | ciijafmjfcdbilnifhohdfhojaokpcpg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/feedbin-notifier/ciijafmjfcdbilnifhohdfhojaokpcpg |
คำอธิบาย | Provides a basic notification service for the RSS aggregator Feedbin. |
ขนาดไฟล์ | 16.44 KB |
จำนวนการติดตั้ง | 51 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2021-04-16 |
วันที่เผยแพร่ | 2018-05-28 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Thunraz |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Thunraz", "version": "1.0.0", "name": "Feedbin Notifier", "description": "Provides a basic notification service for the RSS aggregator Feedbin.", "icons": { "16": "images\/feedbin-16.png", "32": "images\/feedbin-32.png", "48": "images\/feedbin-48.png", "128": "images\/feedbin-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/feedbin.com\/*", "https:\/\/www.feedbin.com\/*" ], "js": [ "js\/browser-polyfill.min.js", "js\/feedbin.js" ] } ], "background": { "scripts": [ "js\/browser-polyfill.min.js", "js\/background.js" ] }, "options_ui": { "page": "options.html" }, "browser_action": { "default_icon": { "16": "images\/feedbin-16.png", "32": "images\/feedbin-32.png", "48": "images\/feedbin-48.png", "128": "images\/feedbin-128.png" } }, "permissions": [ "alarms", "https:\/\/*.feedbin.com\/*" ], "web_accessible_resources": [ "js\/feedbin.js" ] } |