UX Check

Run a heuristic evaluation on your website

UX Check란 무엇입니까?

UX Check은(는) chrisgallello에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Run a heuristic evaluation on your website"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        UX Check makes heuristic evaluations quick and easy. The extension will open up Nielsen's Ten Heuristics in a side pane next to your website. When you click on an element that doesn't comply with a heuristic, you can add notes, and a screenshot will be saved. At the end, you can export everything to a docx so that you can share them with your team.                    

확장 프로그램 기본 정보

이름 UX Check UX Check
ID giekhiebdpmljgchjojblnekkcgpdobp
공식 URL https://chromewebstore.google.com/detail/ux-check/giekhiebdpmljgchjojblnekkcgpdobp
설명 Run a heuristic evaluation on your website
파일 크기 1.32 MB
설치 횟수 62,135
현재 버전 1.0.16
최근 업데이트 2019-06-29
출시 날짜 2019-06-29
평점 3.31/5 총 80 개의 평점
개발자 chrisgallello
결제 유형 free
확장 프로그램 웹 사이트 http://www.uxcheck.co
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UX Check",
    "description": "Run a heuristic evaluation on your website",
    "version": "1.0.16",
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        ""
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Evaluation",
        "default_icon": {
            "19": "browserActionIcon19.png",
            "38": "browserActionIcon38.png"
        }
    },
    "web_accessible_resources": [
        "tray.html",
        "menu.png",
        "plus.png",
        "restart.png",
        "bigpicture.mp4",
        "FileSaver.js",
        "jszip.js",
        "jszip-deflate.js",
        "jszip-inflate.js",
        "jszip-load.js",
        "linq.js",
        "ltxml-extensions.js",
        "ltxml.js",
        "openxml.js",
        "close.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js https:\/\/ssl.google-analytics.com https:\/\/cdn.mxpnl.com\/libs\/mixpanel-2-latest.min.js; object-src 'self'"
}