Quantum Hasher

Quantum Hasher

Port of Password Hasher for FIrefox Quantum. Better security without bursting your brain. The original source for this add-on comes from Steve Cooper's Password Hasher - https://addons.mozilla.org/firefox/addon/password-hasher

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Quantum Hasher",
  "version": "0.3.1",
  "description": "Port of Password Hasher for FIrefox Quantum. Better security without bursting your brain.",
  "homepage_url": "https://github.com/renatolfc/quantum-hasher",
  "icons": {
    "32": "icons/quantum-hasher-32.png",
    "48": "icons/quantum-hasher-48.png",
    "64": "icons/quantum-hasher-64.png",
    "96": "icons/quantum-hasher-96.png"
  },
  "permissions": [
    "tabs",
    "clipboardWrite",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icons/quantum-hasher-32.png",
    "default_title": "Quantum Hasher",
    "default_popup": "popup/password_hasher.html"
  },
  "background": {
    "scripts": [
      "js/passhash-common.js",
      "background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+F6"
      }
    }
  },
  "options_ui": {
    "page": "options/options.html"
  }
}