Focus
Extension to stop procrastination.
Wat is Focus?
Focus is een Chrome-extensie ontwikkeld door Oliver Song, en de belangrijkste functie is "Extension to stop procrastination.".
Extensie Screenshots
Download het CRX-bestand van de extensie Focus
Download Focus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Focus |
ID | iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
Officiële URL | https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
Beschrijving | Extension to stop procrastination. |
Bestandsgrootte | 70.69 KB |
Aantal Installaties | 22 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2022-12-09 |
Publicatiedatum | 2012-11-24 |
Beoordeling | 2.75/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Oliver Song |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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:\/\/*\/*" ] } ] } |