Aternity Web Activity Creator 3.0

Aternity Web Activity Creator 3.0

Aternity Web Activity Creator 3.0

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.0.303",
  "name": "Aternity Web Activity Creator 3.0",
  "short_name": "OnApp",
  "description": "Aternity Web Activity Creator 3.0",
  "author": "Aternity",
  "homepage_url": "https://help.aternity.com/csh?Product=latest&topicname=admin_config_wac2.html",
  "minimum_chrome_version": "88.0.0",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "activeTab",
    "webNavigation",
    "history",
    "tabs",
    "management"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+M"
      }
    },
    "add-element": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Add Element"
    },
    "Reload": {
      "description": "Restart Extension"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "main.js",
        "index.html",
        "style.css",
        "overlay.js",
        "overlay.map.js",
        "content.map.js",
        "background.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "action": {}
}