The Old Reader Notifier
Notifies you about unread items in your The Old Reader account
什麼是The Old Reader Notifier?
The Old Reader Notifier是由https://theoldreader.com開發的Chrome擴展程式,該擴展的主要功能是“Notifies you about unread items in your The Old Reader account”。
擴展截圖
下載The Old Reader Notifier擴展crx文件
下載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 |
官方網址 | 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" } ] } |