Procrastination Alert
Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Co to jest Procrastination Alert?
Procrastination Alert to rozszerzenie Chrome opracowane przez Simon Li, a jego główną funkcją jest „Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Procrastination Alert
Pobierz pliki rozszerzeń Procrastination Alert w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Procrastination Alert |
ID | icimifdanbeeibnjegkbeeppepnljhbi |
Oficjalny URL | https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi |
Opis | Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination. |
Rozmiar pliku | 14.67 KB |
Liczba instalacji | 46 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-11-25 |
Data Publikacji | 2020-11-25 |
Ocena | 4.00/5 Łącznie 1 Oceny |
Deweloper | Simon Li |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |