YouTube channel location

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

YouTube channel location क्या है?

YouTube channel location arsxrs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show info about the YouTube channel location(country) in the video description."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube channel location एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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