Work Interval Timer

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

Was ist Work Interval Timer?

Work Interval Timer ist eine Chrome-Erweiterung, die von jasonstranne entwickelt wurde, und ihr Hauptmerkmal ist "Helps to block distracting websites during alternating periods of work and break".

Erweiterungsscreenshots

screenshot
screenshot

Work Interval Timer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Work Interval Timer-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Work Interval Timer Work Interval Timer
ID ohjdmhmeknfckcobidllopadedgiiilg
Offizielle URL https://chrome.google.com/webstore/detail/work-interval-timer/ohjdmhmeknfckcobidllopadedgiiilg
Beschreibung Helps to block distracting websites during alternating periods of work and break
Dateigröße 55.04 KB
Installationsanzahl 79
Aktuelle Version 2.1.0
Letztes Update 2019-01-09
Veröffentlichungsdatum 2019-01-09
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler jasonstranne
Zahlungsart free
Unterstützte Sprachen 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
    }
}