Fold Socks

A minimalist distraction blocker to keep you on task.

Cos'è Fold Socks?

Fold Socks è un'estensione di Chrome sviluppata da https://foldsocks.com, e la sua funzione principale è "A minimalist distraction blocker to keep you on task.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Fold Socks

Scarica i file di estensione Fold Socks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Fold Socks Fold Socks
ID jgoglnfeholbpehohjbelilljdphphli
URL Ufficiale https://chromewebstore.google.com/detail/fold-socks/jgoglnfeholbpehohjbelilljdphphli
Descrizione A minimalist distraction blocker to keep you on task.
Dimensione del File 764 KB
Conteggio Installazioni 87
Versione Corrente 1.0.3
Ultimo Aggiornamento 2021-09-03
Data di Pubblicazione 2021-02-14
Valutazione 4.80/5 Totale 15 Valutazioni
Sviluppatore https://foldsocks.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://foldsocks.com
Lingue Supportate 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
}