Focus

Extension to stop procrastination.

什么是Focus?

Focus是由Oliver Song开发的Chrome扩展程序,该扩展的主要功能是“Extension to stop procrastination.”。

扩展截图

screenshot

下载Focus扩展crx文件

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

扩展使用说明

                        Stops you from using sites that waste your time.

Update 1.1
Doesn't use Jquery!

Update 1.2
Chrome store policies, more sites, better wording.

Update 1.3
Manifest v3, fix Google Docs

Update 1.4
Small bugfix                    

扩展基本信息

名称 Focus Focus
ID iadpfonbgmlpndbfnhcmpnlcdahgbkbc
官方URL https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc
简介 Extension to stop procrastination.
文件大小 70.69 KB
安装次数 22
当前版本 1.4
更新时间 2022-12-09
上架时间 2012-11-24
评分 2.75/5 共4次评分
开发者 Oliver Song
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus",
    "version": "1.4",
    "manifest_version": 3,
    "description": "Extension to stop procrastination.",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon2.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [],
    "action": {
        "name": "Focus",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.google.com\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script.js",
                "shoop.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}