Procrastination Alert
Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Wat is Procrastination Alert?
Procrastination Alert is een Chrome-extensie ontwikkeld door Simon Li, en de belangrijkste functie is "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.".
Extensie Screenshots
Download het CRX-bestand van de extensie Procrastination Alert
Download Procrastination Alert-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Procrastination Alert |
ID | icimifdanbeeibnjegkbeeppepnljhbi |
Officiële URL | https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi |
Beschrijving | Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination. |
Bestandsgrootte | 14.67 KB |
Aantal Installaties | 46 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2020-11-25 |
Publicatiedatum | 2020-11-25 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Simon Li |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |