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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | 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" } ] } |