Face Login Blocker

Face Login Blocker

Hides the bottom login message.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Face Login Blocker",
  "short_name": "Face Login Blocker",
  "version": "1.2",
  "description": "Hides the bottom login message.",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "https://*.google.com/",
    "activeTab",
    "tabs",
    "webNavigation",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.facebook.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "face.js"
      ]
    }
  ]
}