Flora

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

Vad är Flora?

Flora är en Chrome-tillägg utvecklad av https://flora.pet, och dess huvudfunktion är "Flora- A Chrome extension productivity tool to help you focus better using the Pomodoro technique. It shows a cute plant that grows…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Flora-förlängningens CRX-fil

Ladda ner Flora-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Flora Flora
ID alpnppfhepljffinneabkkgfgdkmmocf
Officiell webbadress https://chromewebstore.google.com/detail/flora/alpnppfhepljffinneabkkgfgdkmmocf
Beskrivning Flora- A Chrome extension productivity tool to help you focus better using the Pomodoro technique. It shows a cute plant that grows…
Filstorlek 514 KB
Antal Installationer 1,301
Aktuell Version 0.0.9
Senast Uppdaterad 2023-02-22
Publiceringsdatum 2022-10-13
Betyg 3.27/5 Totalt 11 Betyg
Utvecklare https://flora.pet
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://flora.pet
Hjälpsida URL https://flora.pet/support
URL till Sekretesspolicy Sidan https://metapals.pet/terms
Stödda Språk 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": [
                ""
            ]
        }
    ]
}