YTPP
YTPP: YouTube Play/Pause without switching tabs
Cos'è YTPP?
YTPP è un'estensione di Chrome sviluppata da spidergears, e la sua funzione principale è "YTPP: YouTube Play/Pause without switching tabs".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YTPP
Scarica i file di estensione YTPP 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
YTPP: YouTube Play/Pause Extension lets user play/pause youtube without having to switch tabs. Clicking the extension button toggles playback state for all open youtube tabs.
Informazioni di Base sull'Estensione
Nome | YTPP |
ID | onlhipebedljinheklgalifgbolcmndi |
URL Ufficiale | https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi |
Descrizione | YTPP: YouTube Play/Pause without switching tabs |
Dimensione del File | 10.16 KB |
Conteggio Installazioni | 23 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2016-11-20 |
Data di Pubblicazione | 2016-11-20 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | spidergears |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YTPP", "short_name": "YTPP", "version": "0.1", "description": "YTPP: YouTube Play\/Pause without switching tabs", "icons": { "128": "icon.png", "48": "icon_48.png", "16": "icon_16.png" }, "author": { "name": "spidergears", "twitter_handle": "spider_gears", "github": "http:\/\/github.com\/spidergears" }, "browser_action": { "default_icon": "icon.png", "default_title": "YTPP" }, "permissions": [ "tabs" ], "background": { "scripts": [ "ytpp_background_script.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "ytpp_content_script.js" ] } ] } |