RemindSecure Anti-Phishing

All-in-one security: Set reminders, prevent phishing, manage passwords, and browse safely with expert guidance.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RemindSecure Anti-Phishing",
  "version": "1.3.7",
  "description": "All-in-one security: Set reminders, prevent phishing, manage passwords, and browse safely with expert guidance.",
  "permissions": [
    "storage",
    "alarms",
    "tabs",
    "scripting",
    "clipboardWrite",
    "activeTab",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "security-monitor.js"
      ],
      "css": [
        "security-styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals"
  },
  "host_permissions": [
    "*://freddydeveloper.com/*",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.css",
        "*.js",
        "trusted_domains.json",
        "threats/*.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}