9GAG Counter

Shows the number of viewed entries of a 9GAG session.

Cos'è 9GAG Counter?

9GAG Counter è un'estensione di Chrome sviluppata da th4t, e la sua funzione principale è "Shows the number of viewed entries of a 9GAG session.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione 9GAG Counter

Scarica i file di estensione 9GAG Counter 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

                        Scrolling... Scrolling...
I wonder how many silly jokes I have viewed by now.
Oh, THAT many.
OK, just 10 more...

Mouse over the icon to see the complete number in a tooltip. The count is truncated to the last two digits and turns red if the number is greater than 99.                    

Informazioni di Base sull'Estensione

Nome 9GAG Counter 9GAG Counter
ID neodomdjpkaafjifhombcdnfankpjjol
URL Ufficiale https://chromewebstore.google.com/detail/9gag-counter/neodomdjpkaafjifhombcdnfankpjjol
Descrizione Shows the number of viewed entries of a 9GAG session.
Dimensione del File 44.87 KB
Conteggio Installazioni 22
Versione Corrente 1.3
Ultimo Aggiornamento 2013-06-13
Data di Pubblicazione 2013-06-13
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore th4t
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "9GAG Counter",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Shows the number of viewed entries of a 9GAG session.",
    "icons": {
        "16": "static\/icon16.png",
        "32": "static\/icon32.png",
        "48": "static\/icon48.png",
        "128": "static\/icon128.png"
    },
    "page_action": {
        "default_icon": "static\/icon19.png",
        "default_title": "0"
    },
    "background": {
        "page": "bg.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/9gag.com\/*"
            ],
            "js": [
                "static\/jquery.js",
                "cntnt.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/9gag.com\/*"
    ]
}