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.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Better Tumblr Video

قم بتنزيل ملفات الامتداد Better Tumblr Video بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}