Better Tumblr Video
Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.
Cos'è Better Tumblr Video?
Better Tumblr Video è un'estensione di Chrome sviluppata da jtank4 Better-Tumblr-Video Dev, e la sua funzione principale è "Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Better Tumblr Video
Scarica i file di estensione Better Tumblr Video 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
Find the source code at https://github.com/jtank4/Better-Tumblr-Video Replaces Tumblr's video player (that lacks volume control) with the Plyr (https://plyr.io/) video player (with volume control) or Chrome's video player (user's choice). Select your video player by left clicking on the Better-Tumblr-Video icon in the top right corner of Chrome. Caveats: Doesn't work on all pages. Some pages of tumblr, like the search page and certain user pages (depends on theme), are completely ensconced in an iframe, which prevents the extension from seeing any videos on the page. Needs permissions: Storage - to store your preferred default video volume. Change log: https://github.com/jtank4/Better-Tumblr-Video/commits/master
Informazioni di Base sull'Estensione
Nome | Better Tumblr Video |
ID | apnnlkobibgdkakehkkgnmfinenhjddh |
URL Ufficiale | https://chromewebstore.google.com/detail/better-tumblr-video/apnnlkobibgdkakehkkgnmfinenhjddh |
Descrizione | Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar. |
Dimensione del File | 43.01 KB |
Conteggio Installazioni | 972 |
Versione Corrente | 0.108 |
Ultimo Aggiornamento | 2018-09-24 |
Data di Pubblicazione | 2018-09-23 |
Valutazione | 4.39/5 Totale 23 Valutazioni |
Sviluppatore | jtank4 Better-Tumblr-Video Dev |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Tumblr Video", "description": "Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.", "version": "0.108", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.tumblr.com\/*" ], "css": [ "vid.css", "plyr\/plyr.css" ], "js": [ "content.js", "plyr\/plyr.min.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ] } |