Twitch WildRP Only

Automatic filtering and coloring for WildRP streams on Twitch's RDR2 page!

Twitch WildRP Only là gì?

Twitch WildRP Only là một tiện ích mở rộng Chrome được phát triển bởi https://twrponly.tv, và tính năng chính của nó là "Automatic filtering and coloring for WildRP streams on Twitch's RDR2 page!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitch WildRP Only

Tải xuống các tệp mở rộng Twitch WildRP Only dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Automatic filtering and coloring for WildRP streams on Twitch's RDR page!
Once installed, go to https://www.twitch.tv/directory/category/red-dead-redemption-2 to use.

This extension is specifically aimed at WildRP viewers on Twitch. It has three primary features:
1. Filtering RDR2 streams to only show WildRP activity
2. Automatically tagging/customizing streams based on:
     a. the active character being played.
     b. the faction (if any) that the character belongs to.
3. Searching for specific characters or factions.

Everything is automatic, you don't have to do anything.

This is a modified fork of Vaeb's Twitch NoPixel Only extension, which I could not live without when watching Wild. Much thanks for Vaeb for the major assist.

--- FAQ ---

> "Does this only apply to the RDR2 category on Twitch?"
Yes. This extension will only affect the RDR2 page linked above. Other Twitch pages will not be affected.

> "How does the tagging work?"
Each channel's title will be compared against their character data to best identify the active character. This includes checking the title for nicknames, partial-names, and faction names. The stream is then tagged with the character name, and the tag is colored based on the character's faction (if one exists). The large majority of Wild streamers put character indications in their title. However, even if they don't, it will tag the stream with a best-guess (based on who they usually play) surrounded by question-marks, e.g. "? Antonio ?".

> "How do you know if it's a WildRP stream?"
Firstly, this extension contains a large list of streamers on the server (currently 406) who are included by default. This list is updated frequently and fetched during runtime (list changes do not require updating the extension). If they're not in the list (new to the server) then the stream title will be checked for terms such as "WildRP", "Wild RP" etc. I've never had an issue with it missing a stream. There is also an option to include other RP servers such as SundownRP and NewCenturyRP. However, there is no individual tagging/customizing done for these servers; all of them are colored pale-blue.

> "What happens if it's a new streamer, with nothing known about their character?"
Even if they aren't in the vast—and growing—list of streamers, they will still be included as long as there is some remote indication of Wild in their title. If no info is known about their character but their title contains some indication of a faction, then the stream will be tagged generically based on that faction, e.g. "< Kettleman Gang >". If no info is known about their character nor is there any faction indication, they will be included with just the generic tag "WRP". Once they appear in the known streamer list, the tag will change to their current character's name and faction color.

Tip: Keeping the "Force English only" setting enabled will improve performance when scrolling into the lower-viewcount streams.

If you have any questions, issues, or to propose character changes, suggest feedback on https://twrponly.tv.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitch WildRP Only Twitch WildRP Only
ID jnbgafpjnfoocapahlkjihjecoaaaikd
URL Chính Thức https://chromewebstore.google.com/detail/twitch-wildrp-only/jnbgafpjnfoocapahlkjihjecoaaaikd
Mô tả Automatic filtering and coloring for WildRP streams on Twitch's RDR2 page!
Kích Thước Tệp 80.16 KB
Số Lần Cài Đặt 191
Phiên Bản Hiện Tại 1.13.8
Cập Nhật Lần Cuối 2023-08-17
Ngày Phát Hành 2022-06-08
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://twrponly.tv
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://twrponly.tv
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch WildRP Only",
    "description": "Automatic filtering and coloring for WildRP streams on Twitch's RDR2 page!",
    "version": "1.13.8",
    "homepage_url": "https:\/\/twrponly.tv",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Twitch WildRP Only"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "css": [
                "css\/twitch.css"
            ],
            "js": [
                "js\/jquery-3.5.1.min.js",
                "js\/sweetalert2.all.min.js",
                "js\/foreground.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/twrponly.tv\/*"
    ]
}