YouTube channel location
Show info about the YouTube channel location(country) in the video description.
What is YouTube channel location?
YouTube channel location is a Chrome extension developed by arsxrs, and its main feature is "Show info about the YouTube channel location(country) in the video description.".
Extension Screenshots
Download YouTube channel location Extension CRX File
Download YouTube channel location extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The extension adds a label with the region(location) information of the YouTube channel near the video description.
Extension Basic Information
Name | YouTube channel location |
ID | lagfgccfpnemkkekoonccjidinipogpd |
Official URL | https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd |
Description | Show info about the YouTube channel location(country) in the video description. |
File Size | 132 KB |
Installation Count | 763 |
Current Version | 1.4.1 |
Last Updated | 2023-08-30 |
Publish Date | 2022-04-29 |
Rating | 4.56/5 Total 9 Ratings |
Developer | arsxrs |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } } |