YTPlayer
Youtube Player
Cos'è YTPlayer?
YTPlayer è un'estensione di Chrome sviluppata da fdal omar, e la sua funzione principale è "Youtube Player".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YTPlayer
Scarica i file di estensione YTPlayer 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
YTPlayer helps you control all of your opened Youtube videos either using keyboard shortcuts or directly using its popup window. The player has audio controls + focus button which focus on a tab, skip button which skip the ad if any, and a button to show suggested youtube videos (exclamation mark icon).
Informazioni di Base sull'Estensione
Nome | |
ID | pakpfpcgppmjfecdmicncjoihpeledem |
URL Ufficiale | https://chromewebstore.google.com/detail/ytplayer/pakpfpcgppmjfecdmicncjoihpeledem |
Descrizione | Youtube Player |
Dimensione del File | 112 KB |
Conteggio Installazioni | 1,397 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2020-10-04 |
Data di Pubblicazione | 2020-08-30 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | fdal omar |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YTPlayer", "description": "Youtube Player", "version": "1.1", "options_page": "pages\/options\/opts.html", "browser_action": { "default_icon": "assets\/icons\/128.png", "default_popup": "pages\/popup\/popup.html", "default_title": "YTPlayer" }, "commands": { "Play": { "suggested_key": { "windows": "Ctrl+Shift+Y" }, "description": "Play the video", "global": true }, "Next": { "suggested_key": { "windows": "Ctrl+Shift+F" }, "description": "Next video", "global": true }, "Reload": { "suggested_key": { "windows": "Ctrl+Shift+E" }, "description": "Load\/Reload video", "global": true }, "Skip": { "suggested_key": { "windows": "Ctrl+Shift+K" }, "description": "Skip Ad", "global": true } }, "icons": { "16": "assets\/icons\/16.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "pages\/cs\/cs.js" ] } ], "permissions": [ "tabs", "https:\/\/www.youtube.com\/watch*", "notifications" ], "background": { "scripts": [ "pages\/bg\/background.js" ], "persistent": false } } |