Preview Short URLs

Preview Short URLs

Stop short URL abuse by previewing the URL automatically before visiting it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Preview Short URLs",
  "description": "Stop short URL abuse by previewing the URL automatically before visiting it.",
  "version": "1.0",
  "author": "Alfie \"Azelphur\" Day",
  "homepage_url": "http://blog.azelphur.com/",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://bit.ly/*",
    "*://bitly.com/*",
    "*://tinyurl.com/*",
    "*://is.gd/*",
    "*://goo.gl/*"
  ],
  "icons": {
    "16": "icons/icon128.png",
    "48": "icons/icon128.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}