Auto Link Bypasser

Auto Link Bypasser

Extension for redirecting your Ad-Link automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "images/icon-grey-16.png",
      "48": "images/icon-grey-48.png",
      "128": "images/icon-grey-128.png"
    }
  },
  "author": "yuumari.com",
  "background": {
    "service_worker": "background/service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "content/script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Extension for redirecting your Ad-Link automatically.",
  "homepage_url": "https://yuumari.com/ex/alb/",
  "icons": {
    "16": "images/icon-green-16.png",
    "48": "images/icon-green-48.png",
    "128": "images/icon-green-128.png"
  },
  "manifest_version": 3,
  "name": "Auto Link Bypasser",
  "options_ui": {
    "open_in_tab": false,
    "page": "options/index.html"
  },
  "permissions": [
    "storage"
  ],
  "short_name": "ALB",
  "version": "1.6.1"
}