remindoro is a productivity chrome extension. it's a free extension and is featured in Productivity, it has 1,000+ active users since released its first version, it earns an average rating of 4.34 from 29 rated user, last update is 855 days ago.
Reminders in Chrome Browsers. Get Chrome Notifications for links to read/notes/activities .... etc. You can set one-time/repeatable reminders or just use as an general note taking app. Remindoro Extension is Open Source and Ad Free. Features: Set Reminders: Schedule one-time reminders or repeatable Reminders. You can set reminders to repeat for minutes, hours, days or months. Get Notified in Chrome Browser for every reminder you set. You can also view all the scheduled reminders in an easy way. Save Pages to Read Later: Just right click and press "Add to Remindoro" to save the current web page to the Remindoro Extension. You can then schedule to read it later. You can also select a text and press "Save text to Remindoro" to save the selected text. Take Notes: Remindoro can also be used as an generic note taking app even if you do not want to set reminders. ------------------------------- For Help please refer - https://palerdot.in/remindoro/#help Source code - https://github.com/palerdot/remindoro Please rate and give your feedbacks in chrome web store.
You could download the latest version crx file or older version files and install it.
English.
61% user give 5-star rating, 17% user give 4-star rating, 17% user give 3-star rating, 6% user give 1-star rating. Read reviews of remindoro
You could find more help information from remindoro support page.
You could send emails to publisher, or check publisher's website.
More about manifest_file of remindoro.
You could click to report abuse of remindoro.
مفييييييييييييد يا جماعة الخير الوقاية خير من العلاج وهذا البرنامج رغم بساطته لكنه أفضل من أنك تمرض من كثر الجلوس على المكتب أو عدم شربك للماء.
no notifications in chrome. please revert to old UI. UX has to many clicks. spartan.
UI could be a bit better, but I love the fact it's open-source and offline. Also - that reminder every 45 minutes got me to start exercising a bit more. I quickly sifted through the code, and I didn't find anything nefarious inside (as in sending my data to some remote server). But I do have a couple of suggestions to improve your coding skills. - No need to use moment. It's better to write a few utility functions yourself than to add an external dependency. Albeit if you really really want to use something like moment, you should consider using something like day.js or luxon. Not my advice, moment's developrs recommend those two over moment. https://github.com/you-dont-need/You-Dont-Need-Momentjs/blob/master/README.md https://momentjs.com/docs/#/-project-status/ - Similar story with lodash. It's better to write couple of utility functions yourself than to add another dependency. But if you prefer using a library, I recommend ramda. - 150 lines for one method/function is way too long. Also I understand comments, but ideally the code should be self-documenting, with comments used rarely in ambiguous cases. - It's great that you write tests, but you should test unsuccessful scenarios too.