Axhub

Axhub

Axure 辅助扩展,可用于原型发布,原型复制等

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.5.8",
  "name": "Axhub",
  "manifest_version": 3,
  "description": "Axure 辅助扩展,可用于原型发布,原型复制等",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "action": {
    "default_title": "Axhub",
    "default_popup": "popup.html"
  },
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*:*/start.html*",
        "https://*.axshare.com/"
      ],
      "js": [
        "static/js/axure.js",
        "segmentit.min.js"
      ],
      "css": [
        "axure.css"
      ]
    },
    {
      "all_frames": true,
      "matches": [
        "http://iconfont.cn/*",
        "http://www.iconfont.cn/*",
        "https://iconfont.cn/*",
        "https://www.iconfont.cn/*"
      ],
      "js": [
        "static/js/iconfont.js"
      ],
      "css": [
        "iconfont.css"
      ]
    }
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "permissions": [
    "notifications",
    "scripting",
    "debugger",
    "activeTab",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "sandbox.html",
        "bridge.html",
        "static/js/figma.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}