Kollektor

Kollektor

This extension shows the user there list of faceboook interest. This can be useful to find what interest you may want to remove by…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Kollektor",
  "description": "",
  "version": "0.1.20",
  "manifest_version": 3,
  "icons": {},
  "action": {
    "default_title": "click to open options page"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/adpreferences/ad_topics"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ],
      "css": [
        "contentScript.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}