Instapaper count

Adds an icon showing your Instapaper unread item count.

O que é Instapaper count?

Instapaper count é uma extensão do Chrome desenvolvida por https://eduardo.noeda.com, e sua principal característica é "Adds an icon showing your Instapaper unread item count.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Instapaper count

Baixe arquivos de extensão Instapaper count 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

                        MOTIVATION
As you probably know, Instapaper does not show any badge or count of the unread items in your account. It's done on purpose and I'm aware of it, but I prefer to be reminded that I have something pending in order to remember to go read it.

So this plugin adds a button in the toolbar which shows the Instapaper unread item count.

FIRST USE
If you are not logged in to Instapaper, the icon shows an exclamation mark. Click on the button and it will open the Instapaper page so you can log in. After that, it will always be able to retrieve the count (you can close the Instapaper tab whenever you want, the plugin doesn't need it to work).

Comments are welcome.                    

Informações Básicas da Extensão

Nome Instapaper count Instapaper count
ID oadfoocehndapcgpcbjngnnfonkilhjb
URL Oficial https://chromewebstore.google.com/detail/instapaper-count/oadfoocehndapcgpcbjngnnfonkilhjb
Descrição Adds an icon showing your Instapaper unread item count.
Tamanho do Arquivo 11.15 KB
Contagem de Instalações 72
Versão Atual 1.4
Última Atualização 2014-10-30
Data de Publicação 2014-10-30
Classificação 4.33/5 Total de 3 Avaliações
Desenvolvedor https://eduardo.noeda.com
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Instapaper count",
    "version": "1.4",
    "manifest_version": 2,
    "description": "Adds an icon showing your Instapaper unread item count.",
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_title": "Click to count your Instapaper items"
    },
    "icons": {
        "16": "icon-16.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "instapapercount.js"
        ]
    },
    "permissions": [
        "https:\/\/www.instapaper.com\/*"
    ]
}