YouTube channel location
Show info about the YouTube channel location(country) in the video description.
Hvad er YouTube channel location?
YouTube channel location er en Chrome-udvidelse udviklet af arsxrs, og dens hovedfunktion er "Show info about the YouTube channel location(country) in the video description.".
Udvidelsesskærmbilleder
Download YouTube channel location-udvidelses-CRX-fil
Download YouTube channel location-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
The extension adds a label with the region(location) information of the YouTube channel near the video description.
Grundlæggende oplysninger om udvidelsen
Navn | YouTube channel location |
ID | lagfgccfpnemkkekoonccjidinipogpd |
Officiel URL | https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd |
Beskrivelse | Show info about the YouTube channel location(country) in the video description. |
Filstørrelse | 132 KB |
Antal Installationer | 763 |
Nuværende Version | 1.4.1 |
Senest Opdateret | 2023-08-30 |
Udgivelsesdato | 2022-04-29 |
Bedømmelse | 4.56/5 Samlet 9 Bedømmelser |
Udvikler | arsxrs |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } } |