UI照妖镜

UI照妖镜

UI设计稿对比辅助工具,按键wsad移动,数字键0-9更改透明度,大写H显示隐藏,大写Z切换H5视图 - - By HuJun

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "HuJun",
  "name": "UI照妖镜",
  "description": "UI设计稿对比辅助工具,按键wsad移动,数字键0-9更改透明度,大写H显示隐藏,大写Z切换H5视图 - - By HuJun",
  "version": "0.0.1",
  "action": {
    "default_icon": {
      "16": "img/icon_gray.png",
      "48": "img/icon_gray.png",
      "128": "img/icon_gray.png"
    },
    "default_title": "UI照妖镜",
    "default_popup": ""
  },
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/uicheck.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}