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) Основная информация о расширении
| Название | |
| 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"
}
]
} | |