Slash It!

Slash It!

Turn your smartphone into chrome's remote controller and slash the page as the way you like

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Slash It!",
  "version": "1.0",
  "description": "Turn your smartphone into chrome's remote controller and slash the page as the way you like",
  "background": {
    "persistent": false,
    "scripts": [
      "channel.js",
      "jquery-2.0.1.min.js",
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "Slash It!",
    "default_icon": "icon48.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.0.1.min.js",
        "content.js",
        "processing-1.4.1.min.js"
      ]
    }
  ],
  "permissions": [
    "background",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "slash.js"
  ],
  "content_security_policy": "script-src 'self' https://mobile-controller.appspot.com/; object-src 'self'",
  "manifest_version": 2
}