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 |
Eメール | [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" ] } |