UX Check

Run a heuristic evaluation on your website

UX Checkคืออะไร?

UX Check เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrisgallello และคุณลักษณะหลักของมันคือ "Run a heuristic evaluation on your website"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UX Check

ดาวน์โหลดไฟล์ส่วนขยาย UX Check ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
}