YouTube channel location
Show info about the YouTube channel location(country) in the video description.
YouTube channel locationとは何ですか?
YouTube channel locationはarsxrsによって開発されたChromeの拡張機能で、その主な機能は「Show info about the YouTube channel location(country) in the video description.」です。
拡張機能のスクリーンショット
YouTube channel location拡張機能のCRXファイルをダウンロード
YouTube channel location拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The extension adds a label with the region(location) information of the YouTube channel near the video description.
拡張機能の基本情報
名前 | 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 |
Eメール | [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 } } |