YouTube channel location
Show info about the YouTube channel location(country) in the video description.
Vad är YouTube channel location?
YouTube channel location är en Chrome-tillägg utvecklad av arsxrs, och dess huvudfunktion är "Show info about the YouTube channel location(country) in the video description.".
Tilläggsskärmbilder
Ladda ner YouTube channel location-förlängningens CRX-fil
Ladda ner YouTube channel location-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
The extension adds a label with the region(location) information of the YouTube channel near the video description. Grundläggande Information om Tillägg
| Namn | |
| ID | lagfgccfpnemkkekoonccjidinipogpd |
| Officiell webbadress | https://chrome.google.com/webstore/detail/lagfgccfpnemkkekoonccjidinipogpd |
| Beskrivning | Show info about the YouTube channel location(country) in the video description. |
| Filstorlek | 132 KB |
| Antal Installationer | 763 |
| Aktuell Version | 1.4.1 |
| Senast Uppdaterad | 2023-08-30 |
| Publiceringsdatum | 2022-04-29 |
| Betyg | 4.56/5 Totalt 9 Betyg |
| Utvecklare | arsxrs |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
}
} | |