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!”。
擴展截圖
下載Twitch WildRP Only擴展crx文件
下載Twitch WildRP Only擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | jnbgafpjnfoocapahlkjihjecoaaaikd |
官方網址 | 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\/*" ] } |