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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "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
  },
  "action": {
    "default_title": "Pinterest Ads & Promo Remover",
    "default_popup": "options.html",
    "default_icon": {
      "16": "16.png",
      "48": "48.png",
      "128": "128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "version": "2.0",
  "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"
      ]
    }
  ]
}