The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

O que é The Old Reader Notifier?

The Old Reader Notifier é uma extensão do Chrome desenvolvida por https://theoldreader.com, e sua principal característica é "Notifies you about unread items in your The Old Reader account".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão The Old Reader Notifier

Baixe arquivos de extensão The Old Reader Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome The Old Reader Notifier The Old Reader Notifier
ID flnadglecinohkbmdpeooblldjpaimpo
URL Oficial https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo
Descrição Notifies you about unread items in your The Old Reader account
Tamanho do Arquivo 72.95 KB
Contagem de Instalações 3,603
Versão Atual 1.5.3
Última Atualização 2021-01-22
Data de Publicação 2017-09-05
Classificação 4.63/5 Total de 152 Avaliações
Desenvolvedor https://theoldreader.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://theoldreader.com/
URL da Página de Ajuda https://github.com/knyar/theoldreader-chrome/
Idiomas Suportados 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"
        }
    ]
}