Forest: stay focused, be present

Forest: stay focused, be present

Stay focused in a pleasant way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "6.2.0",
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "author": "Seekrtech",
  "homepage_url": "https://www.forestapp.cc",
  "icons": {
    "16": "logo/16.png",
    "32": "logo/32.png",
    "48": "logo/48.png",
    "128": "logo/128.png"
  },
  "web_accessible_resources": [
    "*.png",
    "*.svg",
    "*.json"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "logo/16.png",
      "32": "logo/32.png",
      "48": "logo/48.png",
      "128": "logo/128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "firefox-rafz-fix.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "notifications",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}