Messenger Organizer

Messenger Organizer

Organize all of your messages in Facebook Messenger into custom folders, just like email!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Organize all of your messages in Facebook Messenger into custom folders, just like email!",
  "version": "5.7.1",
  "manifest_version": 3,
  "name": "Messenger Organizer",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "/assets/img/icon2.png"
  },
  "icons": {
    "128": "/assets/img/icon2.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "identity",
    "alarms",
    "clipboardRead",
    "notifications"
  ],
  "host_permissions": [
    "https://*.messengerorganizer.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.messenger.com/*",
        "https://*.facebook.com/*",
        "https://app.messengerorganizer.com/*",
        "https://*.instagram.com/*"
      ],
      "js": [
        "/assets/js/jquery-3.2.1.min.js",
        "/assets/js/moment.min.js",
        "contentScript.bundle.js",
        "/assets/js/vanillaSelectBox.js"
      ],
      "css": [
        "content.styles.css",
        "/assets/css/vanillaSelectBox.css"
      ]
    }
  ],
  "oauth2": {
    "client_id": "731467117225-li2t3prrq4b3b3a2le9hqg4mp8rpjash.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/spreadsheets",
      "https://www.googleapis.com/auth/calendar"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "/assets/css/vanillaSelectBox.css",
        "/assets/img/icon2.png"
      ],
      "matches": []
    }
  ]
}