Workflow Assistant

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

Qu'est-ce que Workflow Assistant ?

Workflow Assistant est une extension Chrome développée par Unknown, et sa fonction principale est "A general-use app for organisation and preventing distractions when working.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Workflow Assistant

Téléchargez les fichiers d'extension Workflow Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Workflow Assistant Workflow Assistant
ID mfjjhbalbjfkcckghkahijocjekaijph
URL Officiel https://chromewebstore.google.com/detail/workflow-assistant/mfjjhbalbjfkcckghkahijocjekaijph
Description A general-use app for organisation and preventing distractions when working.
Taille du Fichier 86.5 KB
Nombre d'Installations 43
Version Actuelle 1.3
Dernière Mise à Jour 2022-02-20
Date de Publication 2021-12-08
Évaluation 5.00/5 Total 2 Évaluations
Développeur Unknown
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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'"
}