YouTube channel location

Show info about the YouTube channel location(country) in the video description.

Cos'è YouTube channel location?

YouTube channel location è un'estensione di Chrome sviluppata da arsxrs, e la sua funzione principale è "Show info about the YouTube channel location(country) in the video description.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YouTube channel location

Scarica i file di estensione YouTube channel location 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

                        The extension adds a label with the region(location) information of the YouTube channel near the video description.                    

Informazioni di Base sull'Estensione

Nome YouTube channel location YouTube channel location
ID lagfgccfpnemkkekoonccjidinipogpd
URL Ufficiale https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd
Descrizione Show info about the YouTube channel location(country) in the video description.
Dimensione del File 132 KB
Conteggio Installazioni 763
Versione Corrente 1.4.1
Ultimo Aggiornamento 2023-08-30
Data di Pubblicazione 2022-04-29
Valutazione 4.56/5 Totale 9 Valutazioni
Sviluppatore arsxrs
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.4.1",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": [],
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}