Youtube Short Controller
Youtube Shorts Controller
Cos'è Youtube Short Controller?
Youtube Short Controller è un'estensione di Chrome sviluppata da https://misa198.vercel.app, e la sua funzione principale è "Youtube Shorts Controller".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Short Controller
Scarica i file di estensione Youtube Short Controller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Youtube Short Controller |
ID | fbkgbegeloakaicldjgkamfmpjhlmibi |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi |
Descrizione | Youtube Shorts Controller |
Dimensione del File | 24.95 KB |
Conteggio Installazioni | 3,214 |
Versione Corrente | 1.0.5 |
Ultimo Aggiornamento | 2022-10-15 |
Data di Pubblicazione | 2022-04-28 |
Valutazione | 3.94/5 Totale 16 Valutazioni |
Sviluppatore | https://misa198.vercel.app |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/misa198/youtube-shorts-controller |
Lingue Supportate | 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" } } |