Work Interval Timer

Helps to block distracting websites during alternating periods of work and break

Work Interval Timer क्या है?

Work Interval Timer jasonstranne द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps to block distracting websites during alternating periods of work and break"।

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

screenshot
screenshot

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

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

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

                        This extension helps to promote productivity by controlling periods of work and rest. During periods of work, user-specified distracting websites are blocked while all other sites can be accessed in full. On the other hand, during periods of rest all websites are accessible. This method is very similar to the Pomodoro method and is perfect for studying.

Simply click on the icon to access these features: 
-Stop and start buttons
-Sliders to customize the length of work and rest periods
-Easy to edit list of sites to block                    

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

नाम Work Interval Timer Work Interval Timer
ID ohjdmhmeknfckcobidllopadedgiiilg
आधिकारिक URL https://chrome.google.com/webstore/detail/work-interval-timer/ohjdmhmeknfckcobidllopadedgiiilg
विवरण Helps to block distracting websites during alternating periods of work and break
फ़ाइल का आकार 55.04 KB
स्थापना संख्या 79
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2019-01-09
प्रकाशन तिथि 2019-01-09
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर jasonstranne
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Work Interval Timer",
    "description": "Helps to block distracting websites during alternating periods of work and break",
    "manifest_version": 2,
    "version": "2.1.0",
    "web_accessible_resources": [
        "images\/*.jpg"
    ],
    "author": "[email protected]",
    "permissions": [
        "management",
        "background",
        "webRequest",
        "tabs",
        "webRequestBlocking"
    ],
    "icons": {
        "16": "clockpossiblelogo.png",
        "48": "clockpossiblelogo.png",
        "128": "clockpossiblelogo.png"
    },
    "browser_action": {
        "default_title": "Work Interval Timer",
        "default_icon": "clockpossiblelogo.png",
        "default_popup": "options.html"
    },
    "background": {
        "matches": [
            "*:\/\/*\/*"
        ],
        "scripts": [
            "timer.js",
            "buttonscript.js",
            "options.html"
        ],
        "persistent": true
    }
}