Following Filters for Twitch

Adds the ability to sort and filter your followed channels on Twitch.

Following Filters for Twitchคืออะไร?

Following Filters for Twitch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย adamburich และคุณลักษณะหลักของมันคือ "Adds the ability to sort and filter your followed channels on Twitch."

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

screenshot
screenshot
screenshot

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

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

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

                        Do you follow lots of people on Twitch?  Is your following directory filled with people playing a game you don't want to watch?  Do you want to narrow your following page to only show a particular game?  Following Filters for Twitch lets you do that and more.

This extension injects a UI element into https://www.twitch.tv/directory/following/live

This UI element allows us to filter our followed channels in two ways:
 - Show channels playing only selected games
 - Hide channels playing selected games

Use the checkmark or hit enter in the text area to apply a filter, and use the trashcan to clear your filters.

Note that this extension automatically redirects the "Overview" section of the following page (https://www.twitch.tv/directory/following) to the "Live" section (https://www.twitch.tv/directory/following/live).

NOTE: I developed this extension alone and am confident bugs still exist.  If you find any please 
raise an issue on the github repository for this project: https://github.com/adamburich/Twitch-Following-Filters/

- Thanks :D                    

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

ชื่อ Following Filters for Twitch Following Filters for Twitch
ID amohodpmokmofacdgfdlijdcnjddjpga
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/following-filters-for-twi/amohodpmokmofacdgfdlijdcnjddjpga
คำอธิบาย Adds the ability to sort and filter your followed channels on Twitch.
ขนาดไฟล์ 15.56 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 1.02
อัปเดตครั้งล่าสุด 2023-04-03
วันที่เผยแพร่ 2023-03-21
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา adamburich
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Following Filters for Twitch",
    "description": "Adds the ability to sort and filter your followed channels on Twitch.",
    "version": "1.02",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/directory\/following\/*",
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "js\/content.js",
                "js\/filtering.js",
                "js\/autocomplete.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "permissions": [
        "cookies",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.twitch.tv\/*"
    ],
    "icons": {
        "16": "images\/filter-16.png",
        "32": "images\/filter-32.png",
        "48": "images\/filter-48.png",
        "128": "images\/filter-128.png"
    }
}