Roborabbit Helper

Roborabbit Helper

Roborabbit Helper

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Roborabbit Helper",
  "version": "1.0.3",
  "description": "Roborabbit Helper",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "manifest_version": 3,
  "author": "Roborabbit",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "output.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "action": {
    "default_icon": {
      "16": "rr_icon_16.png",
      "32": "rr_icon_32.png"
    },
    "default_title": "Click on the icon to start Roborabbit Helper"
  },
  "icons": {
    "16": "rr_icon_16.png",
    "32": "rr_icon_32.png",
    "48": "rr_icon_48.png",
    "128": "rr_icon_128.png"
  }
}