Fold Socks

A minimalist distraction blocker to keep you on task.

Was ist Fold Socks?

Fold Socks ist eine Chrome-Erweiterung, die von https://foldsocks.com entwickelt wurde, und ihr Hauptmerkmal ist "A minimalist distraction blocker to keep you on task.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Fold Socks-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fold Socks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Fold Socks Fold Socks
ID jgoglnfeholbpehohjbelilljdphphli
Offizielle URL https://chromewebstore.google.com/detail/fold-socks/jgoglnfeholbpehohjbelilljdphphli
Beschreibung A minimalist distraction blocker to keep you on task.
Dateigröße 764 KB
Installationsanzahl 87
Aktuelle Version 1.0.3
Letztes Update 2021-09-03
Veröffentlichungsdatum 2021-02-14
Bewertung 4.80/5 Insgesamt 15 Bewertungen
Entwickler https://foldsocks.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://foldsocks.com
Unterstützte Sprachen 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
}