Fold Socks

A minimalist distraction blocker to keep you on task.

什么是Fold Socks?

Fold Socks是由https://foldsocks.com开发的Chrome扩展程序,该扩展的主要功能是“A minimalist distraction blocker to keep you on task.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Fold Socks扩展crx文件

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

扩展使用说明

                        Do you ever sit down to complete something only to be distracted by the internet? 

STAY IN THE FLOW
Alternate between blocks of concentration and short breaks to supercharge your productivity. 

GUARD YOUR FOCUS
When your focus slips, we'll block distracting websites and nudge you towards your current task.

SMALL TASKS LEAD TO LARGE GOALS
Accomplish your goals daily by breaking them into small tasks and focusing on one thing at a time.                    

扩展基本信息

名称 Fold Socks Fold Socks
ID jgoglnfeholbpehohjbelilljdphphli
官方URL https://chromewebstore.google.com/detail/fold-socks/jgoglnfeholbpehohjbelilljdphphli
简介 A minimalist distraction blocker to keep you on task.
文件大小 764 KB
安装次数 87
当前版本 1.0.3
更新时间 2021-09-03
上架时间 2021-02-14
评分 4.80/5 共15次评分
开发者 https://foldsocks.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://foldsocks.com
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fold Socks",
    "version": "1.0.3",
    "description": "A minimalist distraction blocker to keep you on task.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "chrome_url_overrides": {
        "newtab": "pages\/newtab.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/blockCheck.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "fold_icon_white_16.png",
        "32": "fold_icon_white_32.png",
        "64": "fold_icon_white_64.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "fold_icon_white_16.png",
            "32": "fold_icon_white_32.png",
            "64": "fold_icon_white_64.png"
        },
        "default_title": "Fold Socks"
    },
    "manifest_version": 2
}