Wayback Everywhere

Wayback Everywhere

Automatically redirect every page to its archived version in Wayback Machine, except the sites in Excludes List

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wayback Everywhere",
  "description": "Automatically redirect every page to its archived version in Wayback Machine, except the sites in Excludes List",
  "version": "1.1.0.5",
  "homepage_url": "https://gitlab.com/gkrishnaks/WaybackEverywhere-Chrome",
  "icons": {
    "16": "images/icon.png",
    "32": "images/[email protected]",
    "48": "images/[email protected]",
    "64": "images/[email protected]",
    "128": "images/[email protected]"
  },
  "permissions": [
    "storage",
    "notifications",
    "tabs",
    "webNavigation",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": {
      "19": "images/icon.png",
      "38": "images/[email protected]"
    },
    "default_title": "Wayback Everywhere",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/workers/index.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.archive.org/*",
        "http://*.archive.org/*"
      ],
      "js": [
        "js/content/detectwaybackMessages.js",
        "js/content/getAnchorLinks.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "minimum_chrome_version": "92"
}