The Old Reader Notifier
Notifies you about unread items in your The Old Reader account
The Old Reader Notifierคืออะไร?
The Old Reader Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://theoldreader.com และคุณลักษณะหลักของมันคือ "Notifies you about unread items in your The Old Reader account"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย The Old Reader Notifier
ดาวน์โหลดไฟล์ส่วนขยาย The Old Reader Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension provides a toolbar icon to notify you about unread items in your The Old Reader account, and context menu items to quickly subscribe to or bookmark a page. Also provides support for [b] shortcut in The Old Reader (open in background)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | The Old Reader Notifier |
ID | flnadglecinohkbmdpeooblldjpaimpo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo |
คำอธิบาย | Notifies you about unread items in your The Old Reader account |
ขนาดไฟล์ | 72.95 KB |
จำนวนการติดตั้ง | 3,603 |
เวอร์ชันปัจจุบัน | 1.5.3 |
อัปเดตครั้งล่าสุด | 2021-01-22 |
วันที่เผยแพร่ | 2017-09-05 |
คะแนน | 4.63/5 รวมทั้งหมด 152 คะแนน |
ผู้พัฒนา | https://theoldreader.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://theoldreader.com/ |
URL หน้าช่วยเหลือ | https://github.com/knyar/theoldreader-chrome/ |
ภาษาที่รองรับ | en,cs |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "version": "1.5.3", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "background": { "scripts": [ "js\/functions.js", "js\/storage.js", "js\/background.js", "js\/menu.js" ] }, "browser_action": { "default_icon": { "19": "img\/icon-inactive.png", "38": "img\/icon-inactive-scale2.png" }, "default_title": "The Old Reader" }, "permissions": [ "tabs", "notifications", "storage", "contextMenus", "*:\/\/theoldreader.com\/" ], "web_accessible_resources": [ "img\/icon-48.png" ], "options_ui": { "page": "options.html", "chrome_style": false }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/theoldreader.com\/*" ], "js": [ "js\/observer.js" ], "run_at": "document_idle" } ] } |