TubeCount

Know how much you love a video by tracking your view count

Cos'è TubeCount?

TubeCount è un'estensione di Chrome sviluppata da Consious Coder, e la sua funzione principale è "Know how much you love a video by tracking your view count".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione TubeCount

Scarica i file di estensione TubeCount 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

                        Minimal extension which count your youtube watch video watch count!

What's New?
- Fixed count doesn't show up on initial load.                    

Informazioni di Base sull'Estensione

Nome TubeCount TubeCount
ID momlemehnehhcbainhhopndejeickcam
URL Ufficiale https://chromewebstore.google.com/detail/tubecount/momlemehnehhcbainhhopndejeickcam
Descrizione Know how much you love a video by tracking your view count
Dimensione del File 22.42 KB
Conteggio Installazioni 160
Versione Corrente 1.0.2
Ultimo Aggiornamento 2021-08-08
Data di Pubblicazione 2021-07-14
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Consious Coder
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TubeCount",
    "version": "1.0.2",
    "manifest_version": 3,
    "description": "Know how much you love a video by tracking your view count",
    "icons": {
        "128": ".\/icons\/128.png",
        "48": ".\/icons\/48.png",
        "16": ".\/icons\/16.png"
    },
    "action": {
        "default_icon": {
            "128": ".\/icons\/128.png",
            "48": ".\/icons\/48.png",
            "16": ".\/icons\/16.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                ".\/js\/content.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                ".\/content.css"
            ]
        }
    ],
    "background": {
        "service_worker": "bg-wrapper.js"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ]
}