URL Revealer

URL Revealer

Reveal the true destination of shortened URLs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionName__",
  "version": "1.0.1",
  "author": "HuyLD",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "minimum_chrome_version": "52",
  "icons": {
    "16": "assets/[email protected]",
    "48": "assets/[email protected]",
    "96": "assets/[email protected]",
    "128": "assets/[email protected]"
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "clipboardWrite",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "libs/constants.js",
      "libs/supported-domains.js",
      "libs/url-parser.js",
      "background-scripts/cache-service.js",
      "background-scripts/request-url.js",
      "background-scripts/main-background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "libs/constants.js",
        "libs/url-parser.js",
        "/content_scripts/main-content-script.js"
      ],
      "css": [
        "assets/announcer.css"
      ]
    }
  ]
}