Instapaper count

Adds an icon showing your Instapaper unread item count.

Cos'è Instapaper count?

Instapaper count è un'estensione di Chrome sviluppata da https://eduardo.noeda.com, e la sua funzione principale è "Adds an icon showing your Instapaper unread item count.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Instapaper count

Scarica i file di estensione Instapaper count in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Instapaper count Instapaper count
ID oadfoocehndapcgpcbjngnnfonkilhjb
URL Ufficiale https://chromewebstore.google.com/detail/instapaper-count/oadfoocehndapcgpcbjngnnfonkilhjb
Descrizione Adds an icon showing your Instapaper unread item count.
Dimensione del File 11.15 KB
Conteggio Installazioni 72
Versione Corrente 1.4
Ultimo Aggiornamento 2014-10-30
Data di Pubblicazione 2014-10-30
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore https://eduardo.noeda.com
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}