Fold Socks
A minimalist distraction blocker to keep you on task.
Hvad er Fold Socks?
Fold Socks er en Chrome-udvidelse udviklet af https://foldsocks.com, og dens hovedfunktion er "A minimalist distraction blocker to keep you on task.".
Udvidelsesskærmbilleder
Download Fold Socks-udvidelses-CRX-fil
Download Fold Socks-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Fold Socks |
ID | jgoglnfeholbpehohjbelilljdphphli |
Officiel URL | https://chromewebstore.google.com/detail/fold-socks/jgoglnfeholbpehohjbelilljdphphli |
Beskrivelse | A minimalist distraction blocker to keep you on task. |
Filstørrelse | 764 KB |
Antal Installationer | 87 |
Nuværende Version | 1.0.3 |
Senest Opdateret | 2021-09-03 |
Udgivelsesdato | 2021-02-14 |
Bedømmelse | 4.80/5 Samlet 15 Bedømmelser |
Udvikler | https://foldsocks.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://foldsocks.com |
Understøttede Sprog | 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 } |