Automatic Dark Theme For Youtube™

Automatically switch Youtube to its built-in dark theme.

Automatic Dark Theme For Youtube™คืออะไร?

Automatic Dark Theme For Youtube™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vvision และคุณลักษณะหลักของมันคือ "Automatically switch Youtube to its built-in dark theme."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Automatic Dark Theme For Youtube™

ดาวน์โหลดไฟล์ส่วนขยาย Automatic Dark Theme For Youtube™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension tries to switch to the built-in dark theme during ten secondes after page load. In case of slow loading, it's possible that the switch would not occured. Therefore another try will during next page load or at current page refresh.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Automatic Dark Theme For Youtube™ Automatic Dark Theme For Youtube™
ID mmhgglciecmmcekdmjnlmdobnephpbdf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/automatic-dark-theme-for/mmhgglciecmmcekdmjnlmdobnephpbdf
คำอธิบาย Automatically switch Youtube to its built-in dark theme.
ขนาดไฟล์ 32.76 KB
จำนวนการติดตั้ง 419
เวอร์ชันปัจจุบัน 3.1.0
อัปเดตครั้งล่าสุด 2020-12-07
วันที่เผยแพร่ 2020-04-28
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา vvision
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/vvision/yt-auto-dark
ภาษาที่รองรับ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "short_name": "YtAutoDark",
    "version": "3.1.0",
    "author": "Victor Voisin",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/vvision\/yt-auto-dark",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "96": "icons\/icon_96.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "modules\/external\/browser-polyfill.min.js",
            "core\/logger.js",
            "core\/onInstalled.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "modules\/external\/browser-polyfill.min.js",
                "core\/logger.js",
                "ytAutoDark.js"
            ]
        }
    ],
    "options_ui": {
        "page": "pages\/options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "60.0"
        }
    }
}