fofa search

fofa search

This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_extDesc__",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "1.1.3",
  "default_locale": "en",
  "action": {
    "default_icon": {
      "16": "assets/16.png",
      "48": "assets/48.png",
      "128": "assets/128.png"
    },
    "default_popup": "popup.html",
    "default_title": "fofa search"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [],
      "js": [
        "js/inject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "cookies"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/inject.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}