Next Todo in New Tab
Shows you the next task to work on
Vad är Next Todo in New Tab?
Next Todo in New Tab är en Chrome-tillägg utvecklad av https://weekplan.net, och dess huvudfunktion är "Shows you the next task to work on".
Tilläggsskärmbilder
Ladda ner Next Todo in New Tab-förlängningens CRX-fil
Ladda ner Next Todo in New Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | bamagneapdhjinedbgjdalmcopaongjh |
Officiell webbadress | https://chromewebstore.google.com/detail/next-todo-in-new-tab/bamagneapdhjinedbgjdalmcopaongjh |
Beskrivning | Shows you the next task to work on |
Filstorlek | 4.82 MB |
Antal Installationer | 89 |
Aktuell Version | 0.3 |
Senast Uppdaterad | 2018-06-24 |
Publiceringsdatum | 2018-06-23 |
Betyg | 4.00/5 Totalt 1 Betyg |
Utvecklare | https://weekplan.net |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://weekplan.net |
Hjälpsida URL | http://support.weekplan.net |
URL till Sekretesspolicy Sidan | https://wise.pm/privacy |
Stödda Språk | 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'" } |