Secret Recovery Phrase Watcher

Secret Recovery Phrase Watcher

Monitors users typing words inside webpages and if it matches words from the BIP39 recovery phrase dictionary, warn the user.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "author": "Terry",
  "version": "0.2",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "48": "icon_48.png",
    "96": "icon_96.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "careful.html"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1523a34c-d50b-4c23-98a5-08b7c0608f82}"
    }
  }
}