Next Todo in New Tab
Shows you the next task to work on
What is Next Todo in New Tab?
Next Todo in New Tab is a Chrome extension developed by https://weekplan.net, and its main feature is "Shows you the next task to work on".
Extension Screenshots
Download Next Todo in New Tab Extension CRX File
Download Next Todo in New Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | bamagneapdhjinedbgjdalmcopaongjh |
Official URL | https://chromewebstore.google.com/detail/next-todo-in-new-tab/bamagneapdhjinedbgjdalmcopaongjh |
Description | Shows you the next task to work on |
File Size | 4.82 MB |
Installation Count | 89 |
Current Version | 0.3 |
Last Updated | 2018-06-24 |
Publish Date | 2018-06-23 |
Rating | 4.00/5 Total 1 Ratings |
Developer | https://weekplan.net |
[email protected] | |
Payment Type | free |
Extension Website | https://weekplan.net |
Help Page URL | http://support.weekplan.net |
Privacy Policy Page URL | https://wise.pm/privacy |
Supported Languages | 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'" } |