Flora

Flora

Flora- A Chrome extension productivity tool to help you focus better using the Pomodoro technique. It shows a cute plant that grows…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Flora",
  "version": "0.0.9",
  "manifest_version": 3,
  "action": {},
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs"
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://localhost/*",
      "*://dev.flora.pet/*",
      "*://flora.pet/*"
    ]
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "js": [
        "/popup.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/inject.js",
        "/inject.js.map",
        "/popup.js",
        "/popup.js.map",
        "/images/flora-logo.png",
        "/images/line.svg",
        "/images/sprout.svg",
        "/images/bg-shinee.png",
        "/images/sample-seed.png",
        "/images/help-icon.svg",
        "/sounds/phase-change.mp3",
        "/sounds/timer-start.mp3",
        "/sounds/timer-end.mp3"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}