Trovo View

The extension allows you to display information about streams from the site Trovo.live

什么是Trovo View?

Trovo View是由ejik.mycode开发的Chrome扩展程序,该扩展的主要功能是“The extension allows you to display information about streams from the site Trovo.live”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Trovo View扩展crx文件

下载Trovo View扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The extension allows you to track the broadcasts of your favorite streamers, as well as receive notifications when some favorite streamer has turned on the broadcast.
Notifications are configured individually for each streamer.


New in Version 1.1:
* Added English translation. The translation is determined by the language selected in the browser
* Improved interface                    

扩展基本信息

名称 Trovo View Trovo View
ID aalidilpehaedphkaoibhonjdmegloih
官方URL https://chromewebstore.google.com/detail/trovo-view/aalidilpehaedphkaoibhonjdmegloih
简介 The extension allows you to display information about streams from the site Trovo.live
文件大小 41.98 KB
安装次数 173
当前版本 1.1
更新时间 2022-05-25
上架时间 2022-05-20
评分 5.00/5 共2次评分
开发者 ejik.mycode
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.freeprivacypolicy.com/live/66b79c75-f7c2-4d91-8cb4-e72a039f2e6f
支持的语言 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.1",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/open-api.trovo.live\/*"
            ],
            "js": [
                "popup.js",
                "options.js",
                "language.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/trovo.live\/*"
    ],
    "action": {
        "default_title": "Trovo View",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "notifications",
        "alarms",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "img\/trovo_icon.png"
    }
}