Time Capsule
Make bookmarks re-open periodically: send time capsules to your future self!
Time Capsuleคืออะไร?
Time Capsule เป็นส่วนขยายของ Chrome ที่พัฒนาโดย maxlath และคุณลักษณะหลักของมันคือ "Make bookmarks re-open periodically: send time capsules to your future self!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Time Capsule
ดาวน์โหลดไฟล์ส่วนขยาย Time Capsule ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The best person to send you links matching your interests is a time traveling version of yourself: create a time capsule by choosing when the current tab should be re-opened; this will bookmark the current tab, and program to re-open it in the future, according to the choosen periodicity, be it an hour, a day, a month, a year, a decade! It will then re-open at this periodicity until the end of times. Or until you un-bookmark it. Why would I need this? Do you have a bookmark folder with 10,000 things-you-should-absolutely-keep-in-mind but never actually re-open once bookmarked? Now, if you don't come back to those things, those things come back to you! Works very well when learning a new subject: you open many links which for most don't make sense now, but would probably make sense in a few months. (that worked awesome for me when learning web development). Works very well as a memo/alarm mechanism: "Now isn't the time to deal with [enter the task on which you plan to procrastinate], but I got to see this page in X hours/days/etc." In some ways, the logo may look like a bow tie. Bow ties are cool. Top features Built with the latest WebExtension standard: shouldn't break until next decade addon revolution Super customizable periodicity: if the offered buttons aren't enough, click on the popup (to get focus on it) and start typing the precise number of a time unit you want. Integrated with the browser bookmarks, which gives numerous advantages: Pages you bookmark this way will show up when you're searching a page (if you activated bookmark suggestion) All your time capsules are grouped in a folder in your bookmarks, which makes them easy to browse/search Easy to export/import: simply import export your bookmarks and your time capsules will come along! It's libre/open source Comes with (poor) time-traveling jokes Sending links to your past self isn't possible yet, but could come in a future version. It might a premium feature, but you can pre-register by making a donation. Advices to keep it sane Do not keep too many bookmarks with a short periodicity: that's gonna be very spammy. Rule of thumb: if a tab re-opens 3 times, and you closed it immediatly the 3 times without considering acting upon it, deal with it now or un-bookmark it. Avoid time paradoxes at all costs. If you like this addon, you might like this other project of mine: inventaire.io, a web app to share your books inventory with your friends!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Time Capsule |
ID | mmpajmbpehdbemfblpmkfmmdampljkdi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/time-capsule/mmpajmbpehdbemfblpmkfmmdampljkdi |
คำอธิบาย | Make bookmarks re-open periodically: send time capsules to your future self! |
ขนาดไฟล์ | 425 KB |
จำนวนการติดตั้ง | 190 |
เวอร์ชันปัจจุบัน | 2.4.0 |
อัปเดตครั้งล่าสุด | 2023-11-25 |
วันที่เผยแพร่ | 2017-07-20 |
คะแนน | 4.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | maxlath |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://maxlath.eu/projects/time-capsule/ |
URL หน้าช่วยเหลือ | https://github.com/maxlath/time-capsule/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/maxlath/time-capsule/blob/main/privacy_policy.md |
ภาษาที่รองรับ | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Time Capsule", "version": "2.4.0", "description": "__MSG_description__", "homepage_url": "https:\/\/maxlath.eu\/projects\/time-capsule", "icons": { "32": "icons\/time-capsule-32.png", "92": "icons\/time-capsule-92.png" }, "permissions": [ "alarms", "bookmarks", "storage", "tabs" ], "browser_action": { "default_icon": { "16": "icons\/time-capsule-disabled-16.png", "32": "icons\/time-capsule-disabled-32.png", "48": "icons\/time-capsule-disabled-48.png", "92": "icons\/time-capsule-disabled-92.png" }, "theme_icons": [ { "light": "icons\/time-capsule-disabled-light-16.png", "dark": "icons\/time-capsule-disabled-16.png", "size": 16 }, { "light": "icons\/time-capsule-disabled-light-32.png", "dark": "icons\/time-capsule-disabled-32.png", "size": 32 }, { "light": "icons\/time-capsule-disabled-light-48.png", "dark": "icons\/time-capsule-disabled-48.png", "size": 48 }, { "light": "icons\/time-capsule-disabled-light-92.png", "dark": "icons\/time-capsule-disabled-92.png", "size": 92 } ], "default_title": "Time Capsule", "default_popup": "popup\/popup.html", "browser_style": true }, "background": { "scripts": [ "browser-polyfill.min.js", "background\/background.js" ], "persistent": false }, "default_locale": "en", "commands": { "open-periodicity-menu": { "suggested_key": { "default": "Alt+C" }, "description": "Open periodicity menu" }, "open-periodicity-settings": { "suggested_key": { "default": "Shift+Alt+C" }, "description": "Open periodicity settings" } }, "options_ui": { "page": "settings\/settings.html", "open_in_tab": true } } |