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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jtank4 Better-Tumblr-Video Dev และคุณลักษณะหลักของมันคือ "Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better Tumblr Video
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |