Webvizio

Reduce time on revisions for live websites and apps with a collaborative feedback tool.

O que é Webvizio?

Webvizio é uma extensão do Chrome desenvolvida por https://webvizio.com, e sua principal característica é "Reduce time on revisions for live websites and apps with a collaborative feedback tool.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Webvizio

Baixe arquivos de extensão Webvizio 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

                        Webvizio Is the ultimate visual feedback, collaboration, and productivity tool for web professionals. You can easily annotate web pages and digital assets, share visual feedback, comment on web design, track bugs, collaborate with your teams and clients, assign and track tasks, and more!

With the Webvizio Chrome Extension, you can also collaborate on password-protected websites and login-based web apps. 

How to use the extension with login-based apps:

1. Download and enable the Webvizio extension
2. Log in to Webvizio
3. Create a Webvizio project using the URL of your login-based app (e.g., appname.com/login or yoursite.com/wp-admin)
4. Log in to your app (it must be the same browser session)
5. Go to your Webvizio project settings
6. Enable Chrome extension
7. Reload your browser page with the Webvizio app.

Need extra help? Contact us at [email protected].                    

Informações Básicas da Extensão

Nome Webvizio Webvizio
ID dpgepcgkiaafcpjnficbigmdmeabhndk
URL Oficial https://chromewebstore.google.com/detail/webvizio/dpgepcgkiaafcpjnficbigmdmeabhndk
Descrição Reduce time on revisions for live websites and apps with a collaborative feedback tool.
Tamanho do Arquivo 35.89 KB
Contagem de Instalações 1,569
Versão Atual 1.0.1.4
Última Atualização 2023-11-03
Data de Publicação 2022-08-14
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://webvizio.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://webvizio.com
URL da Página de Ajuda https://webvizio.com/help-center/
URL da Página de Política de Privacidade https://webvizio.com/documents/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "minimum_chrome_version": "96",
    "name": "Webvizio",
    "description": "Reduce time on revisions for live websites and apps with a collaborative feedback tool.",
    "version": "1.0.1.4",
    "manifest_version": 3,
    "permissions": [
        "cookies",
        "declarativeNetRequestWithHostAccess",
        "webNavigation"
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16c.png",
        "32": "icon32c.png",
        "48": "icon48c.png",
        "128": "icon128c.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "webvizio-app.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.webvizio.com\/*",
                "*:\/\/*.webvizio.my\/*"
            ],
            "js": [
                "webvizio-connector.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        ""
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.webvizio.com\/*"
        ]
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "bg.js"
    }
}