FastForward

FastForward

Don't waste your time with compliance. FastForward circumvents annoying link shorteners.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "icons": {
    "48": "icon/48.png",
    "128": "icon/128.png",
    "150": "icon/150.png",
    "176": "icon/176.png",
    "512": "icon/512.png"
  },
  "default_locale": "en",
  "name": "FastForward",
  "description": "__MSG_appDesc__",
  "homepage_url": "https://fastforward.team",
  "version": "0.2383",
  "author": "FastForward Team",
  "incognito": "split",
  "permissions": [
    "alarms",
    "storage",
    "tabs",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/before-navigate.html",
        "html/blocked.html",
        "html/crowd-bypassed.html",
        "html/tracker-bypass.html",
        "html/options.html",
        "icon/48.png",
        "injection_script.js",
        "bypasses/*",
        "helpers/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ipLoggerRuleset",
        "enabled": true,
        "path": "ip_logger_blocker.json"
      },
      {
        "id": "trackerRuleset",
        "enabled": false,
        "path": "tracker_bypass.json"
      }
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}