Trovo View

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

Cos'è Trovo View?

Trovo View è un'estensione di Chrome sviluppata da ejik.mycode, e la sua funzione principale è "The extension allows you to display information about streams from the site Trovo.live".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Trovo View

Scarica i file di estensione Trovo View in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Trovo View Trovo View
ID aalidilpehaedphkaoibhonjdmegloih
URL Ufficiale https://chromewebstore.google.com/detail/trovo-view/aalidilpehaedphkaoibhonjdmegloih
Descrizione The extension allows you to display information about streams from the site Trovo.live
Dimensione del File 41.98 KB
Conteggio Installazioni 173
Versione Corrente 1.1
Ultimo Aggiornamento 2022-05-25
Data di Pubblicazione 2022-05-20
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore ejik.mycode
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.freeprivacypolicy.com/live/66b79c75-f7c2-4d91-8cb4-e72a039f2e6f
Lingue Supportate 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"
    }
}