TraceErase - erase your data

TraceErase - erase your data

Delete or remove all the Facebook and Google data that you no longer want them to keep.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Delete or remove all the Facebook and Google data that you no longer want them to keep.",
  "version": "0.0.2.1",
  "name": "TraceErase - erase your data",
  "permissions": [
    "tabs",
    "*://*.google.com/*",
    "*://localhost/*",
    "*://www.facebook.com/*",
    "https://europe-west2-mikejeltest.cloudfunctions.net/traceErasePaths"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.facebook.com/*",
        "*://*.google.com/*",
        "*://*.youronlinechoices.com/*",
        "*://*.aboutads.info/*",
        "https://europe-west2-mikejeltest.cloudfunctions.net/traceErasePaths"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "16": "icon-34.png",
    "34": "icon-34.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    "options.html"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}