Steins;Gate

Steins;Gate

Steins;Gate helps automate user interactions on website like clicking, typing, checking content and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Steins;Gate",
  "version": "3.5",
  "description": "Steins;Gate helps automate user interactions on website like clicking, typing, checking content and more",
  "permissions": [
    "tabs",
    "*://*/",
    "storage",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Steins;Gate",
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}