YouTube channel location

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

O que é YouTube channel location?

YouTube channel location é uma extensão do Chrome desenvolvida por arsxrs, e sua principal característica é "Show info about the YouTube channel location(country) in the video description.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube channel location

Baixe arquivos de extensão YouTube channel location no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome YouTube channel location YouTube channel location
ID lagfgccfpnemkkekoonccjidinipogpd
URL Oficial https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd
Descrição Show info about the YouTube channel location(country) in the video description.
Tamanho do Arquivo 132 KB
Contagem de Instalações 763
Versão Atual 1.4.1
Última Atualização 2023-08-30
Data de Publicação 2022-04-29
Classificação 4.56/5 Total de 9 Avaliações
Desenvolvedor arsxrs
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
    }
}