RaidViewer
A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.
什么是RaidViewer?
RaidViewer是由Connor Wright开发的Chrome扩展程序,该扩展的主要功能是“A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.”。
扩展截图
下载RaidViewer扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |