RaidViewer

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

Что такое RaidViewer?

RaidViewer - это расширение Chrome, разработанное Connor Wright, и его основная функция - "A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.".

Снимки экрана расширения

Скачать файл CRX расширения RaidViewer

Скачайте файлы расширений RaidViewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название RaidViewer RaidViewer
ID kchhfcpcokkcenicaepbnnilldheogni
Официальный URL https://chromewebstore.google.com/detail/raidviewer/kchhfcpcokkcenicaepbnnilldheogni
Описание A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.
Размер файла 36.95 KB
Количество установок 1,125
Текущая Версия 1.2
Последнее Обновление 2019-04-18
Дата публикации 2019-04-18
Рейтинг 4.20/5 Всего 5 оценок
Разработчик Connor Wright
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/volvoxcommunity/raidviewer
URL страницы помощи https://discord.gg/jReSmc3
Поддерживаемые языки 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"
            ]
        }
    ]
}