Youtube Short Controller
Youtube Shorts Controller
什么是Youtube Short Controller?
Youtube Short Controller是由https://misa198.vercel.app开发的Chrome扩展程序,该扩展的主要功能是“Youtube Shorts Controller”。
扩展截图
下载Youtube Short Controller扩展crx文件
下载Youtube Short Controller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension will add to the Youtube Short player an overlay with video control functions including stop playing, fast forward or rewind the video for a period of time that can be set in the settings popup.
扩展基本信息
名称 | Youtube Short Controller |
ID | fbkgbegeloakaicldjgkamfmpjhlmibi |
官方URL | https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi |
简介 | Youtube Shorts Controller |
文件大小 | 24.95 KB |
安装次数 | 3,214 |
当前版本 | 1.0.5 |
更新时间 | 2022-10-15 |
上架时间 | 2022-04-28 |
评分 | 3.94/5 共16次评分 |
开发者 | https://misa198.vercel.app |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/misa198/youtube-shorts-controller |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Youtube Shorts Controller", "version": "1.0.5", "author": "Thanh Vu", "homepage_url": "https:\/\/github.com\/thanhvu1982\/youtube-shorts-controller", "manifest_version": 3, "name": "Youtube Short Controller", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_start" } ], "icons": { "16": "icons\/icon16.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "storage" ], "action": { "default_icon": "icons\/icon64.png", "default_popup": "popup.html" } } |