Video Tag Viewer for YouTube
Chrome Extension for Viewing Video Tags on YouTube.
Vad är Video Tag Viewer for YouTube?
Video Tag Viewer for YouTube är en Chrome-tillägg utvecklad av https://fiahfy.blogspot.com, och dess huvudfunktion är "Chrome Extension for Viewing Video Tags on YouTube.".
Tilläggsskärmbilder
Ladda ner Video Tag Viewer for YouTube-förlängningens CRX-fil
Ladda ner Video Tag Viewer for YouTube-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
- Display meta tags for current viewing video. Grundläggande Information om Tillägg
| Namn | |
| ID | gcbndmenkdcbihmachfnhjfbbkgkmeog |
| Officiell webbadress | https://chromewebstore.google.com/detail/video-tag-viewer-for-yout/gcbndmenkdcbihmachfnhjfbbkgkmeog |
| Beskrivning | Chrome Extension for Viewing Video Tags on YouTube. |
| Filstorlek | 7.08 KB |
| Antal Installationer | 2,184 |
| Aktuell Version | 0.0.6 |
| Senast Uppdaterad | 2023-01-01 |
| Publiceringsdatum | 2020-08-04 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | https://fiahfy.blogspot.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"all_frames": false,
"js": [
"content-script.js"
],
"css": [
"content-script.css"
]
}
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"name": "Video Tag Viewer for YouTube",
"description": "Chrome Extension for Viewing Video Tags on YouTube.",
"version": "0.0.6"
} | |