To-Do List.

A Simple To-Do List New-tab Page for Multitaskers

Qu'est-ce que To-Do List. ?

To-Do List. est une extension Chrome développée par https://alexmadrzyk.me, et sa fonction principale est "A Simple To-Do List New-tab Page for Multitaskers".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension To-Do List.

Téléchargez les fichiers d'extension To-Do List. 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

                        Do you ever feel like you have too many things to do, but have convenient way of organizing your tasks? 

This chrome extension gives you a high-visibility to-do list that lets you organize your pending tasks in an organized manner. The background colors and header titles are also editable to your liking!

UPDATE v1.0.4: Added draggable categories, fixed log errors (still working on saving category positions)
UPDATE v1.0.3: Fixed scaling issues
UPDATE v1.0.2: Minor bug fix
UPDATE v1.0.1: Added checkbox for short shadow styling                    

Informations de Base sur l'Extension

Nom To-Do List. To-Do List.
ID lfjmacfbhcmehhkkbfokbghabkiobjpb
URL Officiel https://chromewebstore.google.com/detail/to-do-list/lfjmacfbhcmehhkkbfokbghabkiobjpb
Description A Simple To-Do List New-tab Page for Multitaskers
Taille du Fichier 485 KB
Nombre d'Installations 347
Version Actuelle 1.0.4
Dernière Mise à Jour 2017-03-21
Date de Publication 2017-03-21
Évaluation 4.33/5 Total 6 Évaluations
Développeur https://alexmadrzyk.me
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "To-Do List.",
    "description": "A Simple To-Do List New-tab Page for Multitaskers",
    "version": "1.0.4",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "assets\/background.js"
        ]
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/decoy.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon_128.png"
    }
}