Chromium browser automation

Chromium browser automation

Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "back.html"
  },
  "browser_action": {
    "default_icon": "logo.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/browser-polyfill.min.js",
        "js/jquery-1.7.2.min.js",
        "js/cs.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
  "description": "Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play",
  "icons": {
    "16": "css/icons/16x16.png",
    "48": "css/icons/48x48.png",
    "128": "css/icons/128x128.png"
  },
  "manifest_version": 2,
  "name": "Chromium browser automation",
  "options_page": "options.html",
  "permissions": [
    "cookies",
    "http://*/*",
    "https://*/*",
    "tabs",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "9.1.0"
}