Twitch WildRP Only

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

Twitch WildRP Only란 무엇입니까?

Twitch WildRP Only은(는) https://twrponly.tv에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatic filtering and coloring for WildRP streams on Twitch's RDR2 page!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twitch WildRP Only 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Twitch WildRP Only Twitch WildRP Only
ID jnbgafpjnfoocapahlkjihjecoaaaikd
공식 URL https://chromewebstore.google.com/detail/twitch-wildrp-only/jnbgafpjnfoocapahlkjihjecoaaaikd
설명 Automatic filtering and coloring for WildRP streams on Twitch's RDR2 page!
파일 크기 80.16 KB
설치 횟수 191
현재 버전 1.13.8
최근 업데이트 2023-08-17
출시 날짜 2022-06-08
평점 5.00/5 총 2 개의 평점
개발자 https://twrponly.tv
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twrponly.tv
지원되는 언어 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\/*"
    ]
}