YouTube channel location

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

YouTube channel location là gì?

YouTube channel location là một tiện ích mở rộng Chrome được phát triển bởi arsxrs, và tính năng chính của nó là "Show info about the YouTube channel location(country) in the video description.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube channel location

Tải xuống các tệp mở rộng YouTube channel location dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube channel location YouTube channel location
ID lagfgccfpnemkkekoonccjidinipogpd
URL Chính Thức https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd
Mô tả Show info about the YouTube channel location(country) in the video description.
Kích Thước Tệp 132 KB
Số Lần Cài Đặt 763
Phiên Bản Hiện Tại 1.4.1
Cập Nhật Lần Cuối 2023-08-30
Ngày Phát Hành 2022-04-29
Đánh Giá 4.56/5 Tổng số 9 Đánh Giá
Nhà Phát Triển arsxrs
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}