Link Redirect Trace

Link Redirect Trace

The all-in-one redirect path analyzer. It also analyzes HTTP Headers, REL-canonicals, robots.txt, link power, and link trust!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Link Redirect Trace",
  "short_name": "Redirect Trace",
  "description": "The all-in-one redirect path analyzer. It also analyzes HTTP Headers, REL-canonicals, robots.txt, link power, and link trust!",
  "version": "1.0.0.0",
  "version_name": "1.0.0.0",
  "icons": {
    "19": "/img/icon19.png",
    "38": "/img/icon38.png",
    "128": "/img/icon128.png",
    "256": "/img/icon256.png"
  },
  "browser_action": {
    "default_icon": "/img/icon19.png",
    "default_popup": "/html/popup.html"
  },
  "background": {
    "scripts": [
      "/lib/jquery-2.2.1.min.js",
      "/lib/google-analytics-bundle.js",
      "/js/ChromePlatformAnalytics.js",
      "/js/Cache.js",
      "/js/Tracer.js",
      "/js/Path.js",
      "/js/Hop.js",
      "/js/RobotsTxt.js",
      "/js/UrlChecker.js",
      "/js/Warning.js",
      "/js/Icon.js",
      "/js/SearchEngines.js",
      "/js/RobotsImg.js",
      "/js/RTIcon.js",
      "/js/lrt/LRT.js",
      "/js/IP.js",
      "/js/Screenshot.js",
      "/js/App.js",
      "/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/cs-page.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "/img/*"
  ],
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webNavigation",
    "storage"
  ]
}