PawBlock
Block websites to prevent procrastination and excessive web surfing.
Qu'est-ce que PawBlock ?
PawBlock est une extension Chrome développée par https://dannyguo.com, et sa fonction principale est "Block websites to prevent procrastination and excessive web surfing.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension PawBlock
Téléchargez les fichiers d'extension PawBlock au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | PawBlock |
ID | jngmmiaolbliepfphdnelgfcclpnkoja |
URL Officiel | https://chromewebstore.google.com/detail/pawblock/jngmmiaolbliepfphdnelgfcclpnkoja |
Description | Block websites to prevent procrastination and excessive web surfing. |
Taille du Fichier | 948 KB |
Nombre d'Installations | 1,201 |
Version Actuelle | 0.5.1 |
Dernière Mise à Jour | 2022-12-26 |
Date de Publication | 2018-05-28 |
Évaluation | 4.71/5 Total 7 Évaluations |
Développeur | https://dannyguo.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://pawblock.dannyguo.com |
URL de la Page d'Aide | https://github.com/dguo/pawblock/issues |
Langues Prises en Charge | 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" ] } |