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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}