Twitch VOD Unspoiler

Removes spoilers from Twitch.tv VODs.

ما هو Twitch VOD Unspoiler؟

Twitch VOD Unspoiler هو إضافة Chrome تم تطويرها بواسطة Kyle Coburn، والميزة الرئيسية لها هي "Removes spoilers from Twitch.tv VODs.".

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

screenshot

تحميل ملف CRX للإضافة Twitch VOD Unspoiler

قم بتنزيل ملفات الامتداد Twitch VOD Unspoiler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        ・Hides references to VOD durations on videos/playback pages, and replaces the scrubber with relative time controls (e.g. -30 seconds/+15 minutes)
・Click the extension's icon to toggle spoilers on a per-channel basis

This extension collects no data, and respects your privacy and battery life. Open source at: https://github.com/ky-is/twitch-vod-unspoiler

(Note you can check the video's current time by clicking the playback Settings icon.)                    

معلومات أساسية عن التمديد

الاسم Twitch VOD Unspoiler Twitch VOD Unspoiler
ID kjeacdeffkhbcaoobelkgnnlfpaifaoc
عنوان URL الرسمي https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc
الوصف Removes spoilers from Twitch.tv VODs.
حجم الملف 8.68 KB
عدد التثبيتات 784
النسخة الحالية 2.5.6
آخر تحديث 2023-11-06
تاريخ النشر 2020-06-06
تقييم 4.94/5 مجموع تقييمات 17
المطور Kyle Coburn
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/ky-is/twitch-vod-unspoiler
عنوان صفحة المساعدة https://github.com/ky-is/twitch-vod-unspoiler/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch VOD Unspoiler",
    "version": "2.5.6",
    "description": "Removes spoilers from Twitch.tv VODs.",
    "browser_action": {
        "default_icon": "images\/icon-off.png"
    },
    "icons": {
        "128": "images\/icon-on.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "generated\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*",
                "*:\/\/twitch.tv\/*"
            ],
            "css": [
                "generated\/inject.css"
            ],
            "js": [
                "generated\/inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": []
}