Better Tumblr Video

Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.

Better Tumblr Video là gì?

Better Tumblr Video là một tiện ích mở rộng Chrome được phát triển bởi jtank4 Better-Tumblr-Video Dev, và tính năng chính của nó là "Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Better Tumblr Video

Tải xuống các tệp mở rộng Better Tumblr Video dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Better Tumblr Video Better Tumblr Video
ID apnnlkobibgdkakehkkgnmfinenhjddh
URL Chính Thức https://chromewebstore.google.com/detail/better-tumblr-video/apnnlkobibgdkakehkkgnmfinenhjddh
Mô tả Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.
Kích Thước Tệp 43.01 KB
Số Lần Cài Đặt 972
Phiên Bản Hiện Tại 0.108
Cập Nhật Lần Cuối 2018-09-24
Ngày Phát Hành 2018-09-23
Đánh Giá 4.39/5 Tổng số 23 Đánh Giá
Nhà Phát Triển jtank4 Better-Tumblr-Video Dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}