Momentum
Replace new tab page with a personal dashboard to help you get focused, stay organized, and keep motivated to achieve your goals.
Momentum란 무엇입니까?
Momentum은(는) https://momentumdash.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace new tab page with a personal dashboard to help you get focused, stay organized, and keep motivated to achieve your goals."입니다.
확장 프로그램 스크린샷
Momentum 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
What if every new tab could calm your mind and increase your focus? Achieve your goals faster and more consistently with your own personal dashboard. Featuring to-do lists, weather, daily photos, and encouraging quotes. Join over 3 million energized users who have levelled-up their workspace and day-to-day productivity with Momentum. ☆☆☆ Featured in Tim Ferriss’ Tools of Titans, WWDC21, The Wall Street Journal, Product Hunt, Lifehacker, BuzzFeed, and TheDailyMuse! ☆☆☆ ☆☆ Key Features ☆☆ ✓ New inspiring photo, quote, and mantra each day ✓ Friendly reminders of your most important task ✓ Easy to use to-do list manager ✓ Shortcuts to your favorite websites and apps ✓ Local weather info ✓ Google/Bing/DuckDuckGo/Ecosia search options ✓ Customizable — show/hide features as you like ✓ Private and secure — we don’t share or sell your data Transform your screen to the gorgeous dashboard that keeps you on track. Note: For the best experience, after installing Momentum click the ‘Keep it’ button on the ‘Change back to Google’ notification. This will show Momentum on each new tab as intended. 🙂 ☆☆ Do More With Plus: 11 Fresh Features to Maximize Your Workspace ☆☆ Momentum Plus offers additional productivity tools to support positive workflows and increase focus. ★ NEW: Soundscapes Get in the flow with our focus-driving audio, including: a crackling campfire, peaceful rain, café ambience, and seven other scenes! ★ Pomodoro Timer Organize your day into timed intervals of focused work sessions and short breaks. ★ Todo integrations Connect your favorite task provider to quickly update your tasks on each new tab. Asana, Todoist, Microsoft To Do, Google Tasks, & GitHub. ★ Autofocus mode Always see your top task front and center. Completing your focus replaces it with the next task on your to-do list. ★ Metrics Track the progress your making towards personal and professional milestones. ★ Countdowns Count down the days left until upcoming events and due dates. ★ World Clocks Leave the time zone conversion to us! Add other time zones right on your dashboard. ★ Custom Photos, Quotes, & Mantras Personalize your dashboard with the content that inspires you most. Skip and change the content whenever you want. ★ Notes Jot down important reminders or start that novel with our fullscreen note editor. ★ Multi-Todo list Create more lists to organize your tasks however you like. ★ Extra weather info Get more detailed weather info with an hourly forecast, air quality, chance of rain, and more. ☆☆ Privacy & Security ☆☆ We at Momentum are committed to protecting your privacy. The information we gather or process is used solely for core functionality of Momentum and to improve the quality and security of our service. Your information isn’t and has never been sold to third parties. For more information on privacy and the security of your data visit https://momentumdash.com/privacy. ☆☆ Help & Contact ☆☆ Help Center: https://momentumdash.help Suggestions: https://momentum.nolt.io/ Contact us: https://momentumdash.com/contact ☆☆ Social Pages ☆☆ Blog: https://momentumdash.com/blog Instagram: https://instagram.com/momentumdash Twitter: https://twitter.com/momentumdash Facebook: https://facebook.com/momentumdash
확장 프로그램 기본 정보
이름 | Momentum |
ID | laookkfknpbbblfpciffpaejjkokdgca |
공식 URL | https://chromewebstore.google.com/detail/momentum/laookkfknpbbblfpciffpaejjkokdgca |
설명 | Replace new tab page with a personal dashboard to help you get focused, stay organized, and keep motivated to achieve your goals. |
파일 크기 | 14.24 MB |
설치 횟수 | 3,189,132 |
현재 버전 | 2.13.24 |
최근 업데이트 | 2024-02-29 |
출시 날짜 | 2020-06-18 |
평점 | 4.47/5 총 13837 개의 평점 |
개발자 | https://momentumdash.com |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://momentumdash.com |
도움말 페이지 URL | https://momentumdash.com/help |
개인정보 보호 정책 페이지 URL | https://momentumdash.com/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Momentum", "short_name": "Momentum", "version": "2.13.24", "description": "Replace new tab page with a personal dashboard to help you get focused, stay organized, and keep motivated to achieve your goals.", "icons": { "16": "img\/app\/icon-16.png", "32": "img\/app\/icon-32.png", "48": "img\/app\/icon-48.png", "128": "img\/app\/icon-128.png" }, "background": { "scripts": [ "background-scripts\/momentum.js" ], "persistent": false }, "content_security_policy": "script-src 'self'; object-src 'self'", "chrome_url_overrides": { "newtab": "dashboard.html" }, "offline_enabled": true, "browser_action": { "default_title": "Momentum" }, "content_scripts": [ { "matches": [ "https:\/\/*.momentumdash.com\/*" ], "run_at": "document_end", "all_frames": true, "js": [ "content-scripts\/momoSiteInterop.js" ] } ], "permissions": [ "unlimitedStorage", "*:\/\/*.momentumdash.com\/*" ], "optional_permissions": [ "bookmarks", "tabs", "sessions", "topSites", "chrome:\/\/favicon\/" ] } |