TTV AdEraser

TTV AdEraser aims to remove livestream ads as well as add some useful features to our favourite streaming site.

TTV AdEraserคืออะไร?

TTV AdEraser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย LHDB และคุณลักษณะหลักของมันคือ "TTV AdEraser aims to remove livestream ads as well as add some useful features to our favourite streaming site."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TTV AdEraser

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

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

                        TTV AdEraser aims to remove livestream ads from twitch.tv by replacing the original stream player with a customized embed player. But that's not all the extension does. This project also adds further quality of life features to the twitch player and ui so that you can enjoy your favourite streams the best way possible. I am trying to add more features to the set as frequently as possible and would like to encourage you to leave your ideas in the comments or on GitHub. If you find any bugs or things that don't quite work the way you expect them to please let me know by creating a new issue on GitHub.

v.1.2 aims to remove the "purple screen" that twitch now shows on all embedded streams instead of ads. This version also includes bug fixes and some small new features.

v.1.1 of the extension lets you view ads in a mini player on the bottom left corner of the page. That way you can support your favourite streams while not being bothered to watch ads full screen.

For the full changelog visit my GitHub.

You can find the source code for this extension right here if you want to know how it works: https://github.com/LeonHeidelbach/ttv_adEraser.                    

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

ชื่อ TTV AdEraser TTV AdEraser
ID pjnopimdnmhiaanhjfficogijajbhjnc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ttv-aderaser/pjnopimdnmhiaanhjfficogijajbhjnc
คำอธิบาย TTV AdEraser aims to remove livestream ads as well as add some useful features to our favourite streaming site.
ขนาดไฟล์ 75.26 KB
จำนวนการติดตั้ง 7,990
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2020-12-27
วันที่เผยแพร่ 2020-12-16
คะแนน 3.22/5 รวมทั้งหมด 85 คะแนน
ผู้พัฒนา LHDB
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TTV AdEraser",
    "version": "1.2",
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "JS\/hlp.js",
                "JS\/cnt.js"
            ],
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "IMG\/ExtIcon-128.png",
        "default_popup": "HTML\/hub.html",
        "default_title": "TTV AdEraser"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "JS\/hlp.js",
            "JS\/bkg.js"
        ]
    },
    "icons": {
        "16": "IMG\/ExtIcon-16.png",
        "48": "IMG\/ExtIcon-48.png",
        "128": "IMG\/ExtIcon-128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "webNavigation",
        "*:\/\/*.twitch.tv\/*"
    ],
    "web_accessible_resources": [
        "JS\/*.js",
        "IMG\/*.png",
        "IMG\/*.svg",
        "HTML\/*.css"
    ],
    "description": "TTV AdEraser aims to remove livestream ads as well as add some useful features to our favourite streaming site.",
    "content_security_policy": "script-src 'self'; object-src 'self'"
}