Login Popup Blocker

Login Popup Blocker

Block login pop-up dialogs. Bypass login on websites like Pinterest, Quora and others like these.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Login Popup Blocker",
  "version": "1.0.0",
  "description": "Block login pop-up dialogs.",
  "homepage_url": "https://kazem-ma79.github.io/",
  "icons": {
    "16": "icons/logo-16.png",
    "48": "icons/logo-48.png",
    "96": "icons/logo-96.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.pinterest.com/pin/*",
        "https://*.jobinja.ir/*",
        "https://*.dribbble.com/*",
        "https://*.quora.com/*"
      ],
      "js": [
        "js/jquery.js",
        "app.js"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    "functions.mjs",
    "data/apps.json",
    "data/*.mjs"
  ]
}