Developer Profile

Developer Profile

This extension deletes browser data when all windows in a profile are closed.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Developer Profile",
  "description": "This extension deletes browser data when all windows in a profile are closed.",
  "version": "0.2",
  "icons": {
    "19": "icon_19.png",
    "38": "icon_38.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_title": "Delete browsing data",
    "default_icon": {
      "19": "icon_19.png",
      "38": "icon_38.png"
    }
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "browsingData"
  ]
}