Badoo without ads

Badoo without ads

This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Badoo without ads",
  "description": "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.",
  "version": "1.5",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.badoo.com/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "*://*.badoo.com/*"
  ]
}