Video Tag Viewer for YouTube
Chrome Extension for Viewing Video Tags on YouTube.
什麼是Video Tag Viewer for YouTube?
Video Tag Viewer for YouTube是由https://fiahfy.blogspot.com開發的Chrome擴展程式,該擴展的主要功能是“Chrome Extension for Viewing Video Tags on YouTube.”。
擴展截圖
下載Video Tag Viewer for YouTube擴展crx文件
下載Video Tag Viewer for YouTube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
- Display meta tags for current viewing video. 擴展基本資訊
| 名稱 | |
| ID | gcbndmenkdcbihmachfnhjfbbkgkmeog |
| 官方網址 | https://chromewebstore.google.com/detail/video-tag-viewer-for-yout/gcbndmenkdcbihmachfnhjfbbkgkmeog |
| 簡介 | Chrome Extension for Viewing Video Tags on YouTube. |
| 檔案大小 | 7.08 KB |
| 安裝次數 | 2,184 |
| 目前版本 | 0.0.6 |
| 更新時間 | 2023-01-01 |
| 上架時間 | 2020-08-04 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | https://fiahfy.blogspot.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | 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"
} | |