Focus
Extension to stop procrastination.
Was ist Focus?
Focus ist eine Chrome-Erweiterung, die von Oliver Song entwickelt wurde, und ihr Hauptmerkmal ist "Extension to stop procrastination.".
Erweiterungsscreenshots
Focus-Erweiterungs-CRX-Datei herunterladen
Laden Sie Focus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
| Offizielle URL | https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
| Beschreibung | Extension to stop procrastination. |
| Dateigröße | 70.69 KB |
| Installationsanzahl | 22 |
| Aktuelle Version | 1.4 |
| Letztes Update | 2022-12-09 |
| Veröffentlichungsdatum | 2012-11-24 |
| Bewertung | 2.75/5 Insgesamt 4 Bewertungen |
| Entwickler | Oliver Song |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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:\/\/*\/*"
]
}
]
} | |