Workflow Assistant

A general-use app for organisation and preventing distractions when working.

Co je Workflow Assistant?

Workflow Assistant je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „A general-use app for organisation and preventing distractions when working.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Workflow Assistant

Stáhněte si soubory rozšíření Workflow Assistant ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Be productive during work sessions conveniently and effectively! - no bloat or unnecessary tabs! Workflow Assistant is a chrome extension with with features which help manage organization and distractions when working.

Features:
↳Site blocker: blocks different categories of distracting sites
↳Simple todo-list: keep track of important tasks or unfinished work
↳Work-break timer: be conscious of your sessions using the Pomodoro 
    method

This extension is created and ran by an independent developer for a Personal Project.                    

Základní Informace o Rozšíření

Název Workflow Assistant Workflow Assistant
ID mfjjhbalbjfkcckghkahijocjekaijph
Oficiální URL https://chromewebstore.google.com/detail/workflow-assistant/mfjjhbalbjfkcckghkahijocjekaijph
Popis A general-use app for organisation and preventing distractions when working.
Velikost souboru 86.5 KB
Počet instalací 43
Aktuální Verze 1.3
Poslední Aktualizace 2022-02-20
Datum Vydání 2021-12-08
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Unknown
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Workflow Assistant",
    "description": "A general-use app for organisation and preventing distractions when working.",
    "version": "1.3",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/blockedSiteHandler.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background_scripts\/workBreakHandler.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "initial_popup\/pageLoader.html"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.2.1\/jquery.min.js; object-src 'self'"
}