Motivate - Reach Your Goals
Motivate helps you to stay on track to reach your goals.
Motivate - Reach Your Goalsとは何ですか?
Motivate - Reach Your Goalsはhttps://mindfuldevmag.comによって開発されたChromeの拡張機能で、その主な機能は「Motivate helps you to stay on track to reach your goals.」です。
拡張機能のスクリーンショット
Motivate - Reach Your Goals拡張機能のCRXファイルをダウンロード
Motivate - Reach Your Goals拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Stay on track of your goals right in the browser, the place you have open most of the day. Forget missed reminders on your smartphone or your paper planner. Motivate reminds you at the most crucial place. Your browser! Open Motivate, set your goal, and the date you until you want to have finished it and go. In every tab, Motivate shows your goal and target date in the lower-left corner. You can't miss it. It will always remind you of your goal. Additionally, it nags you with a "Time Waster Warning" on famous time-wasting social media sites. Asking you if visiting those sites is helping you to reach your goal. # How this tool helps me a lot Today I experienced again what a difference a little tool can make. I developed the Motivate chrome extension a while ago to help me to stay on track with tasks and goals. It reminds me on every page that my goal is due and double nags me on time-wasting sites. Simple but incredibly helpful. Let me tell you two stories. The first "that thing works" moment was when I had to call a handyman to get a quote for door repair. I had these tasks on my to-do list for a few days, and during the day, I forgot it again, so I pushed it to the next and so on. You know those, don't ya? One day I put it in my Motivate extension as my goal and is almost always in my sight. Yep, working too much in browsers :-) At noon of that day, I got so sick of seeing this notification that I just called the guy. Done. The second one is similar. I had to fill out some bureaucracy on paper, pack that, go to the post office and send it back. I did the first part pretty fast, and then it lay dormant for days again till to this day. Yesterday before I quit work, I set up a goal for this thing with a due date today. And guess what? It nagged me the whole morning, even with a warning that I m wasting time on twitter while my goal waits... Before noon, the sh!t was done, and I was once again baffled how good that works. And decide to tell you guys about it. And those were only two small examples. I use it daily, and my productivity skyrocketed. If you struggle with the same issues or want to archive more, then give it a go. Changes: - v1.0.2: style fixes, bugfix time display on social warning, add overdue text, minor changes
拡張機能の基本情報
名前 | Motivate - Reach Your Goals |
ID | fajhjemoflcngehnaebgnojijenimodf |
公式URL | https://chromewebstore.google.com/detail/motivate-reach-your-goals/fajhjemoflcngehnaebgnojijenimodf |
説明 | Motivate helps you to stay on track to reach your goals. |
ファイルサイズ | 115 KB |
インストール数 | 376 |
現在のバージョン | 1.0.2 |
最終更新日 | 2020-06-13 |
公開日 | 2020-06-12 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | https://mindfuldevmag.com |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Motivate - Reach Your Goals", "short_name": "Motivate", "version": "1.0.2", "manifest_version": 2, "description": "Motivate helps you to stay on track to reach your goals.", "browser_action": { "name": "Manipulate DOM", "icons": [ "icon48.png" ], "default_icon": "icon48.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "stickygoal.js" ], "css": [ "stickygoal.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] }, { "js": [ "goal-warning.js" ], "css": [ "goal-warning.css" ], "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.facebook.com\/*", "*:\/\/*.instagram.com\/*", "*:\/\/*.pinterest.com\/*", "*:\/\/*.pinterest.de\/*", "*:\/\/*.tumblr.com\/*" ] } ], "web_accessible_resources": [ "fonts\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |