AHK add on

AHK add on

This script is helping to grab elements on the web page for scripting language AHK. plugin reacts on this three keypress…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AHK add on",
  "version": "1.0.2",
  "icons": {
    "128": "Icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  }
}