Procrastination Alert
Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Τι είναι το Procrastination Alert;
Το Procrastination Alert είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Simon Li, και η κύρια λειτουργία του είναι "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Procrastination Alert
Λήψη αρχείων επέκτασης Procrastination Alert σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Procrastination Alert |
ID | icimifdanbeeibnjegkbeeppepnljhbi |
Επίσημο URL | https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi |
Περιγραφή | Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination. |
Μέγεθος Αρχείου | 14.67 KB |
Αριθμός Εγκαταστάσεων | 46 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2020-11-25 |
Ημερομηνία Δημοσίευσης | 2020-11-25 |
Αξιολόγηση | 4.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Simon Li |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |