Focus
Extension to stop procrastination.
Co to jest Focus?
Focus to rozszerzenie Chrome opracowane przez Oliver Song, a jego główną funkcją jest „Extension to stop procrastination.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Focus
Pobierz pliki rozszerzeń Focus w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Focus |
ID | iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
Oficjalny URL | https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
Opis | Extension to stop procrastination. |
Rozmiar pliku | 70.69 KB |
Liczba instalacji | 22 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2022-12-09 |
Data Publikacji | 2012-11-24 |
Ocena | 2.75/5 Łącznie 4 Oceny |
Deweloper | Oliver Song |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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:\/\/*\/*" ] } ] } |