Better Tumblr Video
Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.
Co to jest Better Tumblr Video?
Better Tumblr Video to rozszerzenie Chrome opracowane przez jtank4 Better-Tumblr-Video Dev, a jego główną funkcją jest „Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Better Tumblr Video
Pobierz pliki rozszerzeń Better Tumblr Video w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Better Tumblr Video |
ID | apnnlkobibgdkakehkkgnmfinenhjddh |
Oficjalny URL | https://chromewebstore.google.com/detail/better-tumblr-video/apnnlkobibgdkakehkkgnmfinenhjddh |
Opis | Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar. |
Rozmiar pliku | 43.01 KB |
Liczba instalacji | 972 |
Aktualna Wersja | 0.108 |
Ostatnia Aktualizacja | 2018-09-24 |
Data Publikacji | 2018-09-23 |
Ocena | 4.39/5 Łącznie 23 Oceny |
Deweloper | jtank4 Better-Tumblr-Video Dev |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |