One-Click Deactivate Facebook

One-Click Deactivate Facebook

Deactivate Facebook account in one click by way of an extra convenience button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "One-Click Deactivate Facebook",
  "version": "1.2",
  "description": "Deactivate Facebook account in one click by way of an extra convenience button.",
  "author": "Hunter Leaman",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "reducer.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://*.facebook.com/*; object-src 'self'",
  "permissions": [
    "tabs",
    "https://*.facebook.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "reducer.js"
      ]
    }
  ]
}