Nucleus: A Pomodoro Timer and Website Blocker

Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work.

Nucleus: A Pomodoro Timer and Website Blocker क्या है?

Nucleus: A Pomodoro Timer and Website Blocker shilopron द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Nucleus: A Pomodoro Timer and Website Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        “All of my power is focused on my task; there are no distractions.”

Concentrating your mind and getting into a period of deep focus will make the effort and time that go into your tasks more effective. It will allow you to 'get in the zone', freeing your mind of distractions until your entire body, mind and soul become engrossed into the work.

Nucleus provides a simple, but effective UI to manage these periods of focus and relaxation. Nucleus is based on the Pomodoro technique for time management. When faced with any large task or series of tasks, break the work down into short, timed intervals (called 'Pomodoros') that are spaced out by short breaks. This allows you to immerse your mind, and get good work done.

Nucleus also includes the ability to block distracting websites so you can stay focused on your work.

Find you center.                    

एक्सटेंशन की मूल जानकारी

नाम Nucleus: A Pomodoro Timer and Website Blocker Nucleus: A Pomodoro Timer and Website Blocker
ID koebbleaefghpjjmghelhjboilcmfpad
आधिकारिक URL https://chromewebstore.google.com/detail/nucleus-a-pomodoro-timer/koebbleaefghpjjmghelhjboilcmfpad
विवरण Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work.
फ़ाइल का आकार 2.11 MB
स्थापना संख्या 10,000
वर्तमान संस्करण 2024.01.25
अंतिम अपडेट 2024-02-28
प्रकाशन तिथि 2019-03-08
रेटिंग 4.17/5 कुल 96 रेटिंग्स
डेवलपर shilopron
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://best-products-static.s3.amazonaws.com/privacy/Nucleus+Privacy+policy.pdf
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Nucleus: A Pomodoro Timer and Website Blocker",
    "description": "Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work.",
    "version": "2024.01.25",
    "action": {
        "default_icon": ".\/ico\/128clock.png",
        "default_title": "Nucleus",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": ".\/ico\/128clock.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "activeTab",
        "background",
        "notifications",
        "storage",
        "offscreen"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*.json",
                "*:\/\/*\/*.pdf",
                "*:\/\/*\/*.jpeg",
                "*:\/\/*\/*.jpg",
                "*:\/\/*\/*.png",
                "*:\/\/*\/*.svg"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}