Next Todo in New Tab
Shows you the next task to work on
Was ist Next Todo in New Tab?
Next Todo in New Tab ist eine Chrome-Erweiterung, die von https://weekplan.net entwickelt wurde, und ihr Hauptmerkmal ist "Shows you the next task to work on".
Erweiterungsscreenshots
Next Todo in New Tab-Erweiterungs-CRX-Datei herunterladen
Laden Sie Next Todo in New Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | bamagneapdhjinedbgjdalmcopaongjh |
Offizielle URL | https://chromewebstore.google.com/detail/next-todo-in-new-tab/bamagneapdhjinedbgjdalmcopaongjh |
Beschreibung | Shows you the next task to work on |
Dateigröße | 4.82 MB |
Installationsanzahl | 89 |
Aktuelle Version | 0.3 |
Letztes Update | 2018-06-24 |
Veröffentlichungsdatum | 2018-06-23 |
Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://weekplan.net |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://weekplan.net |
Hilfeseite URL | http://support.weekplan.net |
URL der Datenschutzrichtlinien-Seite | https://wise.pm/privacy |
Unterstützte Sprachen | 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'" } |