Youtube Short Controller
Youtube Shorts Controller
What is Youtube Short Controller?
Youtube Short Controller is a Chrome extension developed by https://misa198.vercel.app, and its main feature is "Youtube Shorts Controller".
Extension Screenshots
Download Youtube Short Controller Extension CRX File
Download Youtube Short Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Youtube Short Controller |
ID | fbkgbegeloakaicldjgkamfmpjhlmibi |
Official URL | https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi |
Description | Youtube Shorts Controller |
File Size | 24.95 KB |
Installation Count | 3,214 |
Current Version | 1.0.5 |
Last Updated | 2022-10-15 |
Publish Date | 2022-04-28 |
Rating | 3.94/5 Total 16 Ratings |
Developer | https://misa198.vercel.app |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/misa198/youtube-shorts-controller |
Supported Languages | 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" } } |