Otto - A productivity tool for focus

Pomodoro timer, website blocker, tasks and workflows to help you become more productive

Vad är Otto - A productivity tool for focus?

Otto - A productivity tool for focus är en Chrome-tillägg utvecklad av https://ottoapp.me, och dess huvudfunktion är "Pomodoro timer, website blocker, tasks and workflows to help you become more productive".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Otto - A productivity tool for focus-förlängningens CRX-fil

Ladda ner Otto - A productivity tool for focus-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

                        Otto — Be mindful while working✨

A Pomodoro timer and website blocker to help you stay focused and be more productive.

Otto is a unique take on Pomodoro timers. It introduces a point-based reward system to make work a bit more fun and also to remind you every action has a price.


How does it work?⭐

Otto is your digital tamagotchi and you need to look after it. Every time you visit a site that's in the block list while the work timer is on, Otto's health depletes. So, keep an eye on the health meter. If it hits zero, well...

To Regain health, stay away from blocked sites, and complete one work session. Otto loves to workout so don't make him miss it!


Features⭐

- Work/Break timer
- Block websites
- Point-based reward system
- Tasks (1 task, 15 min duration)
- Workflows (1 workflow)
- Insights (Basic, working on advance insights)
- Notifications 
- Break mode (websites are unblocked during a Pomodoro break)
- Sounds

Pro features
- Create and manage unlimited tasks
- Sequence task mode
- Takedown task mode (soon)
- Advanced Insights (Web usage and weekly usage)
- Create unlimited workflows
- Workflow - Autoblock websites
- Workflow - Autostart
- Shortcuts (soon)
- templates (soon)
and more...


Work/Break timer⭐

Starting the timer creates a work session and a break session. The duration is up to you but the idea duration is 25 minutes for work and 5 minutes for a break. If you are focused while working, you'll hear a chime at the end of the session to remind you to take a break. You'll also hear a chime when your break ends so be ready to go back to work.

Autoblock Websites⭐

You can now autoblock sites based on the amount of time you spend on them.

After the specified duration is completed Otto will block the site automatically. To view the website again, go to the Settings -> Autoblock section and click on "unblock" to reset autoblock so that the site will be auto blocked all over again. 

How to use Autoblock?⭐
Go to the settings tab in otto and in the "Auto block" section add a new rule and then click on "Block". 

If you want to add a new site to the autoblock list, click on "New+" or go to the blocklist tab and add it over there.

Auto block is on by default but won't work if there aren't any websites in the list. Auto block can be turned on/off in the settings. On the free tier, you can only block 1 site. 


What about Data collection? ⭐

No browser data is sent to a third party or me. As for the insights feature, the data will be stored in the local storage of your browser. 

To improve the product, I'm tracking events and page views in google analytics. This will be optional soon, I'll be working on adding a button to turn it off :)

Data that's being collected via google analytics
- how long people use the extension
- the number of daily/weekly/monthly users
- what part of the UI is most active (via GA events)

Websites you visit or browse will not be sent to me or any 3rd party application. At the moment there is no code that collects your website history, but advanced insights is a new feature that I'm working on and it'll will collect data on how long you spend on websites and what websites you visit. These are stored only in your computer and no where else.  

Got questions? Bug reports? Email me at [email protected] ✌️                    

Grundläggande Information om Tillägg

Namn Otto - A productivity tool for focus Otto - A productivity tool for focus
ID jbojhemhnilgooplglkfoheddemkodld
Officiell webbadress https://chromewebstore.google.com/detail/otto-a-productivity-tool/jbojhemhnilgooplglkfoheddemkodld
Beskrivning Pomodoro timer, website blocker, tasks and workflows to help you become more productive
Filstorlek 560 KB
Antal Installationer 67,291
Aktuell Version 1.0.21
Senast Uppdaterad 2024-02-13
Publiceringsdatum 2020-11-09
Betyg 4.46/5 Totalt 165 Betyg
Utvecklare https://ottoapp.me
E-post [email protected]
Betalningssätt in_app
Tilläggswebbplats https://ottoapp.me/
Hjälpsida URL https://twitter.com/iamnottheway
URL till Sekretesspolicy Sidan https://ottoapp.me/legal/privacy
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Pomodoro timer, website blocker, tasks and workflows to help you become more productive",
    "version": "1.0.21",
    "manifest_version": 3,
    "name": "Otto - A productivity tool for focus",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon24.png"
    },
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "alarms",
        "storage",
        "declarativeNetRequest",
        "tabs",
        "notifications",
        "offscreen"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "toast.html",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}