Next Todo in New Tab

Shows you the next task to work on

什么是Next Todo in New Tab?

Next Todo in New Tab是由https://weekplan.net开发的Chrome扩展程序,该扩展的主要功能是“Shows you the next task to work on”。

扩展截图

screenshot

下载Next Todo in New Tab扩展crx文件

下载Next Todo in New Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Next Todo in New Tab Next Todo in New Tab
ID bamagneapdhjinedbgjdalmcopaongjh
官方URL https://chromewebstore.google.com/detail/next-todo-in-new-tab/bamagneapdhjinedbgjdalmcopaongjh
简介 Shows you the next task to work on
文件大小 4.82 MB
安装次数 89
当前版本 0.3
更新时间 2018-06-24
上架时间 2018-06-23
评分 4.00/5 共1次评分
开发者 https://weekplan.net
电子邮箱 [email protected]
付费类型 free
扩展官网 https://weekplan.net
帮助页面URL http://support.weekplan.net
隐私政策页面URL https://wise.pm/privacy
支持的语言 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'"
}