Stay On Task

This extension blocks websites you don't want to visit, as well as providing a to-do list.

Was ist Stay On Task?

Stay On Task ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension blocks websites you don't want to visit, as well as providing a to-do list.".

Erweiterungsscreenshots

screenshot
screenshot

Stay On Task-Erweiterungs-CRX-Datei herunterladen

Laden Sie Stay On Task-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

                        Stay On Task when you browse the Internet. Block any website of your choosing, as well as create a To-do List with time limits. 

Open a new tab, and click on the browser action on the top right of the tab to toggle the menu.                    

Grundlegende Informationen zur Erweiterung

Name Stay On Task Stay On Task
ID ihopiehopegcihbohemjoicccjdhgnoc
Offizielle URL https://chromewebstore.google.com/detail/stay-on-task/ihopiehopegcihbohemjoicccjdhgnoc
Beschreibung This extension blocks websites you don't want to visit, as well as providing a to-do list.
Dateigröße 1.41 MB
Installationsanzahl 35
Aktuelle Version 0.0.0.3
Letztes Update 2017-07-16
Veröffentlichungsdatum 2017-07-16
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stay On Task",
    "description": "This extension blocks websites you don't want to visit, as well as providing a to-do list.",
    "version": "0.0.0.3",
    "browser_action": {
        "default_icon": "exclaim-icon.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "sidenav.css"
            ],
            "js": [
                "jquery.js",
                "sidenav.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "sidenav.html"
    ]
}