Youtube Short Controller
Youtube Shorts Controller
Wat is Youtube Short Controller?
Youtube Short Controller is een Chrome-extensie ontwikkeld door https://misa198.vercel.app, en de belangrijkste functie is "Youtube Shorts Controller".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube Short Controller
Download Youtube Short Controller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Youtube Short Controller |
ID | fbkgbegeloakaicldjgkamfmpjhlmibi |
Officiële URL | https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi |
Beschrijving | Youtube Shorts Controller |
Bestandsgrootte | 24.95 KB |
Aantal Installaties | 3,214 |
Huidige Versie | 1.0.5 |
Laatst Bijgewerkt | 2022-10-15 |
Publicatiedatum | 2022-04-28 |
Beoordeling | 3.94/5 Totaal 16 Beoordelingen |
Ontwikkelaar | https://misa198.vercel.app |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/misa198/youtube-shorts-controller |
Ondersteunde Talen | 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" } } |