RaidViewer

A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.

Vad är RaidViewer?

RaidViewer är en Chrome-tillägg utvecklad av Connor Wright, och dess huvudfunktion är "A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.".

Tilläggsskärmbilder

Ladda ner RaidViewer-förlängningens CRX-fil

Ladda ner RaidViewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn RaidViewer RaidViewer
ID kchhfcpcokkcenicaepbnnilldheogni
Officiell webbadress https://chromewebstore.google.com/detail/raidviewer/kchhfcpcokkcenicaepbnnilldheogni
Beskrivning A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.
Filstorlek 36.95 KB
Antal Installationer 1,125
Aktuell Version 1.2
Senast Uppdaterad 2019-04-18
Publiceringsdatum 2019-04-18
Betyg 4.20/5 Totalt 5 Betyg
Utvecklare Connor Wright
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/volvoxcommunity/raidviewer
Hjälpsida URL https://discord.gg/jReSmc3
Stödda Språk 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"
            ]
        }
    ]
}