Molla - Stay focused and block distractions

Molla - Stay focused and block distractions

Molla helps you stay focused on your goals by redirecting away from specific content that is not aligned with them, instead of…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Molla - Stay focused and block distractions",
  "version": "1.3.2",
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs"
  ],
  "icons": {
    "48": "icon.png",
    "128": "icon.png"
  },
  "host_permissions": [
    "http://localhost:3000/*",
    "*://*.youtube.com/*",
    "*://*.getmolla.com/*",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "dist/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost:3000/*",
        "*://*.getmolla.com/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dist/content.js"
      ]
    }
  ],
  "action": {}
}