Webvizio

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

Webvizio란 무엇입니까?

Webvizio은(는) https://webvizio.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reduce time on revisions for live websites and apps with a collaborative feedback tool."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Webvizio 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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].                    

확장 프로그램 기본 정보

이름 Webvizio Webvizio
ID dpgepcgkiaafcpjnficbigmdmeabhndk
공식 URL https://chromewebstore.google.com/detail/webvizio/dpgepcgkiaafcpjnficbigmdmeabhndk
설명 Reduce time on revisions for live websites and apps with a collaborative feedback tool.
파일 크기 35.89 KB
설치 횟수 1,569
현재 버전 1.0.1.4
최근 업데이트 2023-11-03
출시 날짜 2022-08-14
평점 5.00/5 총 1 개의 평점
개발자 https://webvizio.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://webvizio.com
도움말 페이지 URL https://webvizio.com/help-center/
개인정보 보호 정책 페이지 URL https://webvizio.com/documents/privacy-policy
지원되는 언어 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"
    }
}