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 |
官方網址 | 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 } } |