RaidViewer
A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.
Was ist RaidViewer?
RaidViewer ist eine Chrome-Erweiterung, die von Connor Wright entwickelt wurde, und ihr Hauptmerkmal ist "A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.".
Erweiterungsscreenshots
RaidViewer-Erweiterungs-CRX-Datei herunterladen
Laden Sie RaidViewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension will automatically remove the raid referral from the URL after being part of a raid to another channel. This will help the channel that has been raided to receive your view.
This extension is only activated on twitch.tv sites. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kchhfcpcokkcenicaepbnnilldheogni |
| Offizielle URL | https://chromewebstore.google.com/detail/raidviewer/kchhfcpcokkcenicaepbnnilldheogni |
| Beschreibung | A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view. |
| Dateigröße | 36.95 KB |
| Installationsanzahl | 1,125 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2019-04-18 |
| Veröffentlichungsdatum | 2019-04-18 |
| Bewertung | 4.20/5 Insgesamt 5 Bewertungen |
| Entwickler | Connor Wright |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/volvoxcommunity/raidviewer |
| Hilfeseite URL | https://discord.gg/jReSmc3 |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "RaidViewer",
"version": "1.2",
"author": "Volvox",
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "volvox-16.png",
"48": "volvox-48.png",
"128": "volvox-128.png"
},
"description": "A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.",
"content_scripts": [
{
"matches": [
"https:\/\/www.twitch.tv\/*"
],
"js": [
"jquery-2.1.3.min.js",
"content.js"
]
}
]
} | |