9GAG Counter

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

¿Qué es 9GAG Counter?

9GAG Counter es una extensión de Chrome desarrollada por th4t, y su función principal es "Shows the number of viewed entries of a 9GAG session.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión 9GAG Counter

Descarga archivos de extensión 9GAG Counter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre 9GAG Counter 9GAG Counter
ID neodomdjpkaafjifhombcdnfankpjjol
URL Oficial https://chromewebstore.google.com/detail/9gag-counter/neodomdjpkaafjifhombcdnfankpjjol
Descripción Shows the number of viewed entries of a 9GAG session.
Tamaño del Archivo 44.87 KB
Cantidad de Instalaciones 22
Versión Actual 1.3
Última Actualización 2013-06-13
Fecha de Publicación 2013-06-13
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador th4t
Tipo de Pago free
Idiomas Soportados 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\/*"
    ]
}