Stay On Task

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

Hvad er Stay On Task?

Stay On Task er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This extension blocks websites you don't want to visit, as well as providing a to-do list.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Stay On Task-udvidelses-CRX-fil

Download Stay On Task-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Stay On Task Stay On Task
ID ihopiehopegcihbohemjoicccjdhgnoc
Officiel URL https://chromewebstore.google.com/detail/stay-on-task/ihopiehopegcihbohemjoicccjdhgnoc
Beskrivelse This extension blocks websites you don't want to visit, as well as providing a to-do list.
Filstørrelse 1.41 MB
Antal Installationer 35
Nuværende Version 0.0.0.3
Senest Opdateret 2017-07-16
Udgivelsesdato 2017-07-16
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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"
    ]
}