Messenger Unread

Messenger Unread

Check messenger without the stress. Don't send typing indicators or read receipts. Free & open source, only 30 lines of code.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Messenger Unread",
  "short_name": "Messenger Unread",
  "description": "Check messenger without the stress. Don't send typing indicators or read receipts. Free & open source, only 30 lines of code.",
  "version": "1.3.4",
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "*://*.facebook.com/*",
    "*://*.messenger.com/*"
  ],
  "icons": {
    "32": "images/icon_32.png",
    "128": "images/icon_128.png",
    "256": "images/icon_256.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/icon_128.png"
  }
}