PawClaws

PawClaws

PawClaws allows you to record mouse interactions on a running website and play them back.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PawClaws",
  "description": "PawClaws allows you to record mouse interactions on a running website and play them back.",
  "version": "1.0.6",
  "icons": {
    "128": "Icons/PawIcon2.png"
  },
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self';  font-src 'self' https://fonts.gstatic.com data:;",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "siteScript/bootstrap/css/bootstrap.min.css"
      ],
      "js": [
        "siteScript/jquery-2.1.4.min.js",
        "siteScript/bootstrap/js/bootstrap.min.js",
        "siteScript/bootbox.min.js",
        "bower_components/angular/angular.js",
        "bower_components/angular-hotkeys/src/hotkeys.js",
        "bower_components/mousetrap/mousetrap.min.js",
        "bower_components/q/q.js",
        "src/ViewportRelative.js",
        "src/Train.js",
        "src/WheelEventSimulator.js",
        "src/Gestures.js",
        "src/Paw.js",
        "loadPopup.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_popup": "popup2.html",
    "default_icon": "Icons/PawIcon1.png",
    "default_title": "Record or Play A Paw Script!"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "background",
    "identity",
    "https://accounts.google.com/",
    "https://www.googleapis.com/",
    "https://fonts.gstatic.com/"
  ],
  "web_accessible_resources": [
    "bower_components/mousetrap/mousetrap.min.js",
    "bower_components/q/q.js",
    "src/ViewportRelative.js",
    "src/Train.js",
    "src/WheelEventSimulator.js",
    "src/Gestures.js",
    "src/Paw.js"
  ]
}