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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Better Tumblr Video एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    ]
}