YouTube channel location

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

Was ist YouTube channel location?

YouTube channel location ist eine Chrome-Erweiterung, die von arsxrs entwickelt wurde, und ihr Hauptmerkmal ist "Show info about the YouTube channel location(country) in the video description.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

YouTube channel location-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube channel location-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name YouTube channel location YouTube channel location
ID lagfgccfpnemkkekoonccjidinipogpd
Offizielle URL https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd
Beschreibung Show info about the YouTube channel location(country) in the video description.
Dateigröße 132 KB
Installationsanzahl 763
Aktuelle Version 1.4.1
Letztes Update 2023-08-30
Veröffentlichungsdatum 2022-04-29
Bewertung 4.56/5 Insgesamt 9 Bewertungen
Entwickler arsxrs
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
    }
}