Focus
Extension to stop procrastination.
Vad är Focus?
Focus är en Chrome-tillägg utvecklad av Oliver Song, och dess huvudfunktion är "Extension to stop procrastination.".
Tilläggsskärmbilder
Ladda ner Focus-förlängningens CRX-fil
Ladda ner Focus-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Focus |
ID | iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
Officiell webbadress | https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
Beskrivning | Extension to stop procrastination. |
Filstorlek | 70.69 KB |
Antal Installationer | 22 |
Aktuell Version | 1.4 |
Senast Uppdaterad | 2022-12-09 |
Publiceringsdatum | 2012-11-24 |
Betyg | 2.75/5 Totalt 4 Betyg |
Utvecklare | Oliver Song |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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:\/\/*\/*" ] } ] } |