EC2 URL Redirect

EC2 URL Redirect

Automatically detects EC2 urls and redirects Chrome to the ip address instead.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EC2 URL Redirect",
  "version": "1.6",
  "manifest_version": 2,
  "description": "Automatically detects EC2 urls and redirects Chrome to the ip address instead.",
  "browser_action": {
    "default_icon": "ec2_transparent.png",
    "default_title": "Enable/Disable EC2 redirect.",
    "default_popup": "ec2redirect.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "tabs"
  ],
  "background": {
    "scripts": [
      "RulesService.js",
      "RuleMatcher.js",
      "background.js"
    ]
  }
}