YouTube channel location

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

¿Qué es YouTube channel location?

YouTube channel location es una extensión de Chrome desarrollada por arsxrs, y su función principal es "Show info about the YouTube channel location(country) in the video description.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión YouTube channel location

Descarga archivos de extensión YouTube channel location 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

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

Información Básica de la Extensión

Nombre YouTube channel location YouTube channel location
ID lagfgccfpnemkkekoonccjidinipogpd
URL Oficial https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd
Descripción Show info about the YouTube channel location(country) in the video description.
Tamaño del Archivo 132 KB
Cantidad de Instalaciones 763
Versión Actual 1.4.1
Última Actualización 2023-08-30
Fecha de Publicación 2022-04-29
Calificación 4.56/5 Total de 9 Calificaciones
Desarrollador arsxrs
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
    }
}