YouTube channel location

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

什么是YouTube channel location?

YouTube channel location是由arsxrs开发的Chrome扩展程序,该扩展的主要功能是“Show info about the YouTube channel location(country) in the video description.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载YouTube channel location扩展crx文件

下载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
    }
}