Who's Selling My Info?

Who's Selling My Info?

Detects whether websites have a 'Do Not Sell My Personal Information' link mandated by CCPA, and makes them easily accessible.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Who's Selling My Info?",
  "author": "Sean O'Connor",
  "version": "1.0",
  "description": "Detects whether websites have a 'Do Not Sell My Personal Information' link mandated by CCPA, and makes them easily accessible.",
  "homepage_url": "https://github.com/swow2015/Who-sSellingMyInfo-",
  "icons": {
    "48": "icons/icon_active.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon_inactive.png",
    "default_title": "Who's Selling My Info?"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "check_for_link.js",
        "click_scripts.js"
      ],
      "css": [
        "popup.css"
      ]
    }
  ]
}