Better Tumblr Video
Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.
Vad är Better Tumblr Video?
Better Tumblr Video är en Chrome-tillägg utvecklad av jtank4 Better-Tumblr-Video Dev, och dess huvudfunktion är "Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.".
Tilläggsskärmbilder
Ladda ner Better Tumblr Video-förlängningens CRX-fil
Ladda ner Better Tumblr Video-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Better Tumblr Video |
ID | apnnlkobibgdkakehkkgnmfinenhjddh |
Officiell webbadress | https://chromewebstore.google.com/detail/better-tumblr-video/apnnlkobibgdkakehkkgnmfinenhjddh |
Beskrivning | Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar. |
Filstorlek | 43.01 KB |
Antal Installationer | 972 |
Aktuell Version | 0.108 |
Senast Uppdaterad | 2018-09-24 |
Publiceringsdatum | 2018-09-23 |
Betyg | 4.39/5 Totalt 23 Betyg |
Utvecklare | jtank4 Better-Tumblr-Video Dev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |