Azarus
Azarus turns every livestream into a game! Play along and win rewards while watching.
什么是Azarus?
Azarus是由Azarus Inc.开发的Chrome扩展程序,该扩展的主要功能是“Azarus turns every livestream into a game! Play along and win rewards while watching.”。
扩展截图
下载Azarus扩展crx文件
下载Azarus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Azarus uses overlay technology to turn livestreams into playgrounds, inviting viewers to play games alongside streamers and win awesome prizes. With more than 35k prizes available, the Azarus Store offers a wide selection of items for you to choose from: video games, gift cards, subscriptions and more!
扩展基本信息
名称 | Azarus |
ID | hdchgjcjgijeoaecnhncijkipkpmjcih |
官方URL | https://chromewebstore.google.com/detail/azarus/hdchgjcjgijeoaecnhncijkipkpmjcih |
简介 | Azarus turns every livestream into a game! Play along and win rewards while watching. |
文件大小 | 556 KB |
安装次数 | 2,071 |
当前版本 | 1.4.1 |
更新时间 | 2023-03-22 |
上架时间 | 2022-08-23 |
评分 | 4.70/5 共10次评分 |
开发者 | Azarus Inc. |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://azarus.io |
帮助页面URL | https://discord.gg/tYBnxyHrDt |
隐私政策页面URL | https://docs.azarus.io/terms-and-policies/privacy-policy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Azarus", "description": "Azarus turns every livestream into a game! Play along and win rewards while watching.", "author": "Azarus, Inc.", "version": "1.4.1", "icons": { "16": ".\/icons\/icon-16.png", "48": ".\/icons\/icon-48.png", "128": ".\/icons\/icon-128.png", "256": ".\/icons\/icon-256.png" }, "action": { "default_title": "Azarus", "default_popup": ".\/popup\/index.html", "default_icon": { "16": ".\/icons\/icon-16.png", "24": ".\/icons\/icon-24.png", "32": ".\/icons\/icon-32.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.azarus.io\/*" ], "run_at": "document_start", "js": [ ".\/content-scripts\/azarus-installation-notifier.js" ] }, { "matches": [ "https:\/\/*.azarus.io\/*" ], "run_at": "document_start", "all_frames": true, "js": [ ".\/content-scripts\/azarus-communicator.js" ] }, { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ ".\/content-scripts\/twitch.js" ] } ], "background": { "service_worker": ".\/background.js" }, "permissions": [ "storage", "tabs" ] } |