Procrastination Alert
Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Qu'est-ce que Procrastination Alert ?
Procrastination Alert est une extension Chrome développée par Simon Li, et sa fonction principale est "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Procrastination Alert
Téléchargez les fichiers d'extension Procrastination Alert 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
We often spend more time mindlessly browsing YouTube, Facebook and Twitter than we want to. This extension shows you gentle reminders on those websites after 25 minutes (or a customized amount of time) to help you get back to work and avoid procrastination.
Informations de Base sur l'Extension
Nom | Procrastination Alert |
ID | icimifdanbeeibnjegkbeeppepnljhbi |
URL Officiel | https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi |
Description | Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination. |
Taille du Fichier | 14.67 KB |
Nombre d'Installations | 46 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-11-25 |
Date de Publication | 2020-11-25 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | Simon Li |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Procrastination Alert", "version": "1.0", "description": "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.", "manifest_version": 2, "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "default_icon": "icon-32.png", "default_title": "Procrastination Alert", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*", "*:\/\/twitter.com\/*", "*:\/\/www.facebook.com\/*" ], "js": [ "script.js" ], "css": [ "styles.css" ] } ] } |