Work.ink Pass - bypass work.ink links

Work.ink Pass - bypass work.ink links

Skip ads on work.ink while still supporting your favorite creators using the power of Affiliate Links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Work.ink Pass - bypass work.ink links",
  "description": "Skip ads on work.ink while still supporting your favorite creators using the power of Affiliate Links.",
  "version": "1.0.11",
  "action": {
    "default_icon": {
      "16": "icon/16x16.png",
      "48": "icon/48x48.png",
      "128": "icon/128x128.png"
    },
    "default_title": "Work.ink Pass",
    "default_popup": "popup.html"
  },
  "externally_connectable": {
    "matches": [
      "*://*.work.ink/*",
      "*://work.ink/*"
    ]
  },
  "homepage_url": "https://work.ink/pass",
  "permissions": [
    "storage",
    "management"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "redirect.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "author": "[email protected]"
}