ARGOS DOM

ARGOS DOM

Xpath extraction extension for ARGOS STU (HTML Action)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ARGOS DOM",
  "version": "1.1.0",
  "manifest_version": 2,
  "icons": {
    "16": "Launcher.ico",
    "32": "Launcher.ico",
    "48": "Launcher.ico",
    "128": "Launcher.ico"
  },
  "description": "Xpath extraction extension for ARGOS STU (HTML Action)",
  "background": {
    "scripts": [
      "js/modules/jquery-1.12.3.min.js",
      "js/modules/socket.io.slim.js",
      "js/background/background.js",
      "js/util/argos_util.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/util/argos_util.js",
        "js/content/content_command.js",
        "js/content/content_injection.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "minimum_chrome_version": "52"
}