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.
扩展基本信息
名称 | Video Tag Viewer for YouTube |
ID | gcbndmenkdcbihmachfnhjfbbkgkmeog |
官方URL | 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" } |