Unwanted Twitch

Hide unwanted streams, games, categories, channels and tags on: twitch.tv

Unwanted Twitchคืออะไร?

Unwanted Twitch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kwaschny.net และคุณลักษณะหลักของมันคือ "Hide unwanted streams, games, categories, channels and tags on: twitch.tv"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Hide unwanted streams, games, categories, channels and tags on: twitch.tv

Features
- hide unwanted categories/games
- hide unwanted channels/streams
- hide unwanted tags
- hide stream reruns
- hide streams based on their title
- filtering on "Following" page can be disabled (in settings)
- toggle visibility of "X" buttons
- share blacklists using import/export (in settings)
- blacklist can automatically sync between devices (in settings, requires opt-in)
- one-click-toggle to disable/enable extension (click on the extension icon to access)
- compatible with FrankerFaceZ (FFZ) and other popular extensions for Twitch
- supports Twitch's Dark Mode
- supports pattern matching and regular expressions for dynamic blacklisting

Supported pages
- Browse: Categories
- Browse: Live Channels
- Game: Live Channels (preview is not filtered)
- Game: Videos
- Game: Clips
- Frontpage/Discover (carousel is not filtered)
- Explore Gaming/IRL/Music/Creative (Esports is not filtered)
- Following
- Sidebar (filtering only, no buttons to add items to the blacklist)
- you can still access any blacklisted content via direct link

Note about breaking changes on twitch.tv
Twitch is infamous for changing their website without further notice, which may break this extension over night. Twitch also serves different canary builds (previews of potential future versions) to selected/random users for up to 4 weeks, which most likely break parts of the extension. If you notice pages no longer working properly, disable the extension, report the issue¹ and wait for an update. Note that updates may take a few days to be approved on the corresponding browser stores. Keep an eye on the GitHub commits² or follow me on Twitter³ to receive news regarding new versions.

FAQ / Troubleshooting
Visit the GitHub page for details: https://github.com/kwaschny/unwanted-twitch/blob/master/README.md

Contributing to this extension
Regardless if you are a regular user or a developer yourself, check out the contribution page on GitHub for information about how you can help this project⁴.

¹ https://github.com/kwaschny/unwanted-twitch/issues
² https://github.com/kwaschny/unwanted-twitch/commits/master
³ https://twitter.com/Kwaschny
⁴ https://github.com/kwaschny/unwanted-twitch/blob/master/CONTRIBUTING.md                    

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

ชื่อ Unwanted Twitch Unwanted Twitch
ID egbpddkgpjmliolmpjenjomflclekjld
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/unwanted-twitch/egbpddkgpjmliolmpjenjomflclekjld
คำอธิบาย Hide unwanted streams, games, categories, channels and tags on: twitch.tv
ขนาดไฟล์ 47.27 KB
จำนวนการติดตั้ง 23,890
เวอร์ชันปัจจุบัน 23.10.17
อัปเดตครั้งล่าสุด 2023-10-18
วันที่เผยแพร่ 2020-06-20
คะแนน 3.82/5 รวมทั้งหมด 242 คะแนน
ผู้พัฒนา https://kwaschny.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kwaschny/unwanted-twitch
URL หน้าช่วยเหลือ https://github.com/kwaschny/unwanted-twitch/issues
URL หน้านโยบายความเป็นส่วนตัว https://kwaschny.net/privacy/UnwantedTwitch
ภาษาที่รองรับ de,en,es,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unwanted Twitch",
    "short_name": "Unwanted TTV",
    "version": "23.10.17",
    "description": "__MSG_app_Desc__",
    "host_permissions": [
        "https:\/\/www.twitch.tv\/"
    ],
    "permissions": [
        "storage"
    ],
    "default_locale": "en",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_start",
            "js": [
                "scripts\/common.js",
                "scripts\/storage.js",
                "scripts\/directory.js"
            ],
            "css": [
                "styles\/directory.css"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon32.png",
        "default_popup": "views\/popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 3
}