LinkLift

LinkLift

Automatically Bypass Paywalls and Sign-in Prompts and Read all those Premium Medium Articles For Free

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "LinkLift",
  "version": "0.9.0",
  "description": "Bypass Paywalls and Sign-in Prompts and Read all those Premium Medium Articles For Free",
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "scripting",
    "activeTab",
    "webNavigation"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "LinkLiftForFirFox@YashJ",
      "strict_min_version": "113.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "icons": {
    "16": "assets/Logo_16.png",
    "32": "assets/Logo_32.png",
    "48": "assets/Logo_48.png",
    "128": "assets/Logo_128.png"
  },
  "manifest_version": 3
}