Trovo View

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

O que é Trovo View?

Trovo View é uma extensão do Chrome desenvolvida por ejik.mycode, e sua principal característica é "The extension allows you to display information about streams from the site Trovo.live".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Trovo View

Baixe arquivos de extensão Trovo View no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Trovo View Trovo View
ID aalidilpehaedphkaoibhonjdmegloih
URL Oficial https://chromewebstore.google.com/detail/trovo-view/aalidilpehaedphkaoibhonjdmegloih
Descrição The extension allows you to display information about streams from the site Trovo.live
Tamanho do Arquivo 41.98 KB
Contagem de Instalações 173
Versão Atual 1.1
Última Atualização 2022-05-25
Data de Publicação 2022-05-20
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor ejik.mycode
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.freeprivacypolicy.com/live/66b79c75-f7c2-4d91-8cb4-e72a039f2e6f
Idiomas Suportados 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"
    }
}