Flora

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

Was ist Flora?

Flora ist eine Chrome-Erweiterung, die von https://flora.pet entwickelt wurde, und ihr Hauptmerkmal ist "Flora- A Chrome extension productivity tool to help you focus better using the Pomodoro technique. It shows a cute plant that grows…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Flora-Erweiterungs-CRX-Datei herunterladen

Laden Sie Flora-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Flora- A Chrome extension productivity tool to help you focus better using the Pomodoro technique.
It shows a cute plant that grows in the corner of your screen as you work!
Keep time by growing a plant in your browser screen while in focus mode!
How does it work?
🌱 Focus better with Flora
Grow your plant by starting Focus mode
🌱 Extra focus makes an extra bonus
Stay focused to see your plants grow
🌱 Reap what you sow
Collect and share as many seed rewards with your friends to add Flora collection!                    

Grundlegende Informationen zur Erweiterung

Name Flora Flora
ID alpnppfhepljffinneabkkgfgdkmmocf
Offizielle URL https://chromewebstore.google.com/detail/flora/alpnppfhepljffinneabkkgfgdkmmocf
Beschreibung Flora- A Chrome extension productivity tool to help you focus better using the Pomodoro technique. It shows a cute plant that grows…
Dateigröße 514 KB
Installationsanzahl 1,301
Aktuelle Version 0.0.9
Letztes Update 2023-02-22
Veröffentlichungsdatum 2022-10-13
Bewertung 3.27/5 Insgesamt 11 Bewertungen
Entwickler https://flora.pet
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://flora.pet
Hilfeseite URL https://flora.pet/support
URL der Datenschutzrichtlinien-Seite https://metapals.pet/terms
Unterstützte Sprachen en
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": [
                ""
            ]
        }
    ]
}