Next Todo in New Tab

Shows you the next task to work on

Cos'è Next Todo in New Tab?

Next Todo in New Tab è un'estensione di Chrome sviluppata da https://weekplan.net, e la sua funzione principale è "Shows you the next task to work on".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Next Todo in New Tab

Scarica i file di estensione Next Todo in New Tab 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

                        New tab that shows a random gorgeous picture and your next task. 

It integrates with Week Plan to pull down your todo list from your Week Plan account. https://weekplan.net                    

Informazioni di Base sull'Estensione

Nome Next Todo in New Tab Next Todo in New Tab
ID bamagneapdhjinedbgjdalmcopaongjh
URL Ufficiale https://chromewebstore.google.com/detail/next-todo-in-new-tab/bamagneapdhjinedbgjdalmcopaongjh
Descrizione Shows you the next task to work on
Dimensione del File 4.82 MB
Conteggio Installazioni 89
Versione Corrente 0.3
Ultimo Aggiornamento 2018-06-24
Data di Pubblicazione 2018-06-23
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore https://weekplan.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://weekplan.net
URL della Pagina di Aiuto http://support.weekplan.net
URL della Pagina della Politica sulla Privacy https://wise.pm/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Next Todo in New Tab",
    "version": "0.3",
    "manifest_version": 2,
    "description": "Shows you the next task to work on",
    "icons": {
        "64": "logo64.png",
        "32": "logo32.png",
        "16": "logo16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "https:\/\/api.weekplan.net\/*",
                "http:\/\/api-dev.weekplan.net\/*"
            ],
            "exclude_matches": [
                "https:\/\/app.weekplan.net\/*"
            ],
            "css": [],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "cookies"
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}