flounder

flounder

Keylogging extension that records everything you type in chrome for the past 3 days

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "flounder",
  "description": "Keylogging extension that records everything you type in chrome for the past 3 days",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "tabs",
    "https://ajax.googleapis.com/",
    "storage",
    "unlimitedStorage"
  ],
  "browser_action": {
    "default_icon": "images/favicon.png",
    "default_popup": "barracuda.html"
  },
  "icons": {
    "16": "images/favicon.png",
    "48": "images/favicon_48.png",
    "128": "images/fish_green.jpg"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "salmon.js"
      ]
    }
  ]
}