beABot

beABot

Become a javascript crawler bot (beta)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "beABot",
  "version": "1.0.3",
  "author": "Will Harvey",
  "description": "Become a javascript crawler bot (beta)",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "beABot",
    "default_popup": "popup.html",
    "default_icon": "assets/williamnharvey.png"
  },
  "icons": {
    "16": "assets/williamnharvey.png",
    "48": "assets/williamnharvey.png",
    "128": "assets/williamnharvey.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "assets/jquery-3.2.1.min.js",
        "scripts/contentscript.js"
      ]
    }
  ]
}