infotxt

infotxt

Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "infotxt",
  "short_name": "infotxt",
  "description": "Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.",
  "version": "1.0",
  "author": "Favian Eric Raygoza",
  "browser_action": {
    "default_icon": "absent.png",
    "default_title": "securitytxt not found"
  },
  "icons": {
    "16": "absent.png",
    "32": "absent.png",
    "48": "absent.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}