Better Tumblr Video
Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.
什么是Better Tumblr Video?
Better Tumblr Video是由jtank4 Better-Tumblr-Video Dev开发的Chrome扩展程序,该扩展的主要功能是“Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.”。
扩展截图
下载Better Tumblr Video扩展crx文件
下载Better Tumblr Video扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Better Tumblr Video |
ID | apnnlkobibgdkakehkkgnmfinenhjddh |
官方URL | https://chromewebstore.google.com/detail/better-tumblr-video/apnnlkobibgdkakehkkgnmfinenhjddh |
简介 | Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar. |
文件大小 | 43.01 KB |
安装次数 | 972 |
当前版本 | 0.108 |
更新时间 | 2018-09-24 |
上架时间 | 2018-09-23 |
评分 | 4.39/5 共23次评分 |
开发者 | jtank4 Better-Tumblr-Video Dev |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |