Stay On Task

This extension blocks websites you don't want to visit, as well as providing a to-do list.

什么是Stay On Task?

Stay On Task是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension blocks websites you don't want to visit, as well as providing a to-do list.”。

扩展截图

screenshot
screenshot

下载Stay On Task扩展crx文件

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

扩展使用说明

                        Stay On Task when you browse the Internet. Block any website of your choosing, as well as create a To-do List with time limits. 

Open a new tab, and click on the browser action on the top right of the tab to toggle the menu.                    

扩展基本信息

名称 Stay On Task Stay On Task
ID ihopiehopegcihbohemjoicccjdhgnoc
官方URL https://chromewebstore.google.com/detail/stay-on-task/ihopiehopegcihbohemjoicccjdhgnoc
简介 This extension blocks websites you don't want to visit, as well as providing a to-do list.
文件大小 1.41 MB
安装次数 35
当前版本 0.0.0.3
更新时间 2017-07-16
上架时间 2017-07-16
评分 3.00/5 共2次评分
开发者 Unknown
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stay On Task",
    "description": "This extension blocks websites you don't want to visit, as well as providing a to-do list.",
    "version": "0.0.0.3",
    "browser_action": {
        "default_icon": "exclaim-icon.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "sidenav.css"
            ],
            "js": [
                "jquery.js",
                "sidenav.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "sidenav.html"
    ]
}