Humans.txt

Humans.txt

Detects and displays Humans.txt information. Visit http://www.humanstxt.org/ for more information.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Humans.txt",
  "description": "Detects and displays Humans.txt information. Visit http://www.humanstxt.org/ for more information.",
  "version": "1.0",
  "background": {
    "page": "background.html"
  },
  "page_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png",
      "128": "img/icon128.png"
    },
    "default_title": "Humans.txt",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "jquery.js",
        "popup.js"
      ]
    }
  ]
}