Pinterest Ads & Promo Remover

Pinterest Ads & Promo Remover

This extension hides intrusive ads and promotional content on all Pinterest sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Pinterest Ads & Promo Remover",
  "description": "This extension hides intrusive ads and promotional content on all Pinterest sites",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "options_ui": {
    "page": "options_updated.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_title": "Pinterest Ads & Promo Remover",
    "default_popup": "options.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "version": "1.6",
  "content_scripts": [
    {
      "matches": [
        "*://*.pinterest.com/*",
        "*://*.pinterest.co.kr/*",
        "*://*.pinterest.de/*",
        "*://*.pinterest.es/*",
        "*://*.pinterest.fr/*",
        "*://*.pinterest.it/*",
        "*://*.pinterest.jp/*",
        "*://*.pinterest.se/*",
        "*://*.pinterest.co.uk/*",
        "*://*.pinterest.de/*",
        "*://*.pinterest.ca/*",
        "*://*.pinterest.com.mx/*",
        "*://*.pinterest.ch/*",
        "*://*.pinterest.dk/*",
        "*://*.pinterest.at/*",
        "*://*.pinterest.nz/*",
        "*://*.pinterest.pt/*",
        "*://*.pinterest.ie/*",
        "*://*.pinterest.com.au/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "106.0"
    }
  }
}