Focus

Extension to stop procrastination.

What is Focus?

Focus is a Chrome extension developed by Oliver Song, and its main feature is "Extension to stop procrastination.".

Extension Screenshots

screenshot

Download Focus Extension CRX File

Download Focus 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

                        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                    

Extension Basic Information

Name Focus Focus
ID iadpfonbgmlpndbfnhcmpnlcdahgbkbc
Official URL https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc
Description Extension to stop procrastination.
File Size 70.69 KB
Installation Count 22
Current Version 1.4
Last Updated 2022-12-09
Publish Date 2012-11-24
Rating 2.75/5 Total 4 Ratings
Developer Oliver Song
Email [email protected]
Payment Type free
Supported Languages 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:\/\/*\/*"
            ]
        }
    ]
}