Axure RP Viewer

Axure RP Viewer

A Viewer that allows local viewing of Axure RP prototypes from Microsoft Edge.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "chrome-state-manager.js",
        "cs.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "axurerp-48.png",
    "128": "axurerp-128.png"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "name": "__MSG_name__",
  "action": {
    "default_icon": "axurerp-16.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "version": "1.1.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}