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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}