YouTube channel location

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

Что такое YouTube channel location?

YouTube channel location - это расширение Chrome, разработанное arsxrs, и его основная функция - "Show info about the YouTube channel location(country) in the video description.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения YouTube channel location

Скачайте файлы расширений YouTube channel location в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название YouTube channel location YouTube channel location
ID lagfgccfpnemkkekoonccjidinipogpd
Официальный URL https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd
Описание Show info about the YouTube channel location(country) in the video description.
Размер файла 132 KB
Количество установок 763
Текущая Версия 1.4.1
Последнее Обновление 2023-08-30
Дата публикации 2022-04-29
Рейтинг 4.56/5 Всего 9 оценок
Разработчик arsxrs
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
    }
}