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 |
官方網址 | 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" } } |