Next Todo in New Tab
Shows you the next task to work on
Hvad er Next Todo in New Tab?
Next Todo in New Tab er en Chrome-udvidelse udviklet af https://weekplan.net, og dens hovedfunktion er "Shows you the next task to work on".
Udvidelsesskærmbilleder
Download Next Todo in New Tab-udvidelses-CRX-fil
Download Next Todo in New Tab-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | bamagneapdhjinedbgjdalmcopaongjh |
Officiel URL | https://chromewebstore.google.com/detail/next-todo-in-new-tab/bamagneapdhjinedbgjdalmcopaongjh |
Beskrivelse | Shows you the next task to work on |
Filstørrelse | 4.82 MB |
Antal Installationer | 89 |
Nuværende Version | 0.3 |
Senest Opdateret | 2018-06-24 |
Udgivelsesdato | 2018-06-23 |
Bedømmelse | 4.00/5 Samlet 1 Bedømmelser |
Udvikler | https://weekplan.net |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://weekplan.net |
Hjælpeside-URL | http://support.weekplan.net |
URL til Fortrolighedspolitik Side | https://wise.pm/privacy |
Understøttede Sprog | 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'" } |