Examine source code of クッキークリーナー

Inspect and view changes in クッキークリーナー source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "クッキークリーナー",
  "description": "ホワイトリスト以外のクッキーを一括削除できます。クッキーのテキスト書き出しもできる。",
  "version": "1.0.1",
  "icons": {
    "18": "icon.png"
  },
  "permissions": [
    "*://*/*/",
    "cookies",
    "downloads"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{046002b6-4166-45a4-ae30-ceced574d3cf}"
    }
  }
}