PawBlock
Block websites to prevent procrastination and excessive web surfing.
Was ist PawBlock?
PawBlock ist eine Chrome-Erweiterung, die von https://dannyguo.com entwickelt wurde, und ihr Hauptmerkmal ist "Block websites to prevent procrastination and excessive web surfing.".
Erweiterungsscreenshots
PawBlock-Erweiterungs-CRX-Datei herunterladen
Laden Sie PawBlock-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
Block distracting sites with PawBlock when you need to get something done first. Configure a blacklist of websites, and when you try to visit one, PawBlock will stop you and encourage you to get back to what you were doing.
Grundlegende Informationen zur Erweiterung
Name | PawBlock |
ID | jngmmiaolbliepfphdnelgfcclpnkoja |
Offizielle URL | https://chromewebstore.google.com/detail/pawblock/jngmmiaolbliepfphdnelgfcclpnkoja |
Beschreibung | Block websites to prevent procrastination and excessive web surfing. |
Dateigröße | 948 KB |
Installationsanzahl | 1,201 |
Aktuelle Version | 0.5.1 |
Letztes Update | 2022-12-26 |
Veröffentlichungsdatum | 2018-05-28 |
Bewertung | 4.71/5 Insgesamt 7 Bewertungen |
Entwickler | https://dannyguo.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://pawblock.dannyguo.com |
Hilfeseite URL | https://github.com/dguo/pawblock/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PawBlock", "version": "0.5.1", "description": "Block websites to prevent procrastination and excessive web surfing.", "applications": { "gecko": { "id": "@pawblock" } }, "icons": { "16": "images\/icon-16-on.png", "32": "images\/icon-32-on.png", "48": "images\/icon-48-on.png", "128": "images\/icon-128-on.png" }, "browser_action": { "default_icon": { "16": "images\/icon-16-on.png", "32": "images\/icon-32-on.png", "48": "images\/icon-48-on.png", "128": "images\/icon-128-on.png" }, "default_title": "PawBlock", "default_popup": "popup.html" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "options_page": "options.html", "options_ui": { "page": "options.html", "browser_style": false, "chrome_style": false, "open_in_tab": true }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "downloads", "storage", "webNavigation" ], "web_accessible_resources": [ "block.html" ] } |