Pinterest Ads Only

Pinterest Ads Only

Remove every post which is not 'promoted' on your pinterest feed. A distraction free way to focus on just the ads on your feed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pinterest Ads Only",
  "version": "0.1",
  "description": "Remove every post which is not 'promoted' on your pinterest feed. A distraction free way to focus on just the ads on your feed",
  "manifest_version": 3,
  "author": "[email protected]",
  "content_scripts": [
    {
      "matches": [
        "https://www.pinterest.at/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "action": {
    "default_title": "Pinterest Ads Only",
    "default_icon": {
      "48": "images/logo.png",
      "128": "images/logo.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://www.pinterest.at/*"
  ],
  "icons": {
    "48": "images/logo.png",
    "128": "images/logo.png"
  }
}