To-Do List.

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

Cos'è To-Do List.?

To-Do List. è un'estensione di Chrome sviluppata da https://alexmadrzyk.me, e la sua funzione principale è "A Simple To-Do List New-tab Page for Multitaskers".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione To-Do List.

Scarica i file di estensione To-Do List. in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome To-Do List. To-Do List.
ID lfjmacfbhcmehhkkbfokbghabkiobjpb
URL Ufficiale https://chromewebstore.google.com/detail/to-do-list/lfjmacfbhcmehhkkbfokbghabkiobjpb
Descrizione A Simple To-Do List New-tab Page for Multitaskers
Dimensione del File 485 KB
Conteggio Installazioni 347
Versione Corrente 1.0.4
Ultimo Aggiornamento 2017-03-21
Data di Pubblicazione 2017-03-21
Valutazione 4.33/5 Totale 6 Valutazioni
Sviluppatore https://alexmadrzyk.me
Tipo di Pagamento free
Lingue Supportate 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"
    }
}