Snooze Master
Snooze the selected tabs by clicking and selecting a wake up time. The tab's browser history is restored too if recently closed.
Snooze Masterคืออะไร?
Snooze Master เป็นส่วนขยายของ Chrome ที่พัฒนาโดย em_te และคุณลักษณะหลักของมันคือ "Snooze the selected tabs by clicking and selecting a wake up time. The tab's browser history is restored too if recently closed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Snooze Master
ดาวน์โหลดไฟล์ส่วนขยาย Snooze Master ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Snooze the selected tabs by clicking on the toolbar icon and selecting a wake up time. The tab closes and will reopen itself at the designated time. Features: * Choose using a relative time (e.g., 1 hour later) * Choose using an absolute time (e.g., 10:00 am) * Add a short reminder that appears when the tab wakes up * Restores the tab's history if the tab was recently closed * Snooze multiple tabs by ctrl+clicking on multiple tabs * View a list of your snoozed tabs with their wake up times * Quickly snooze a tab by right clicking on the toolbar icon (choose 1 hour, 5pm, 9am tomorrow, or 1 week) * This extension requires very few permissions Use case scenarios: * Remind yourself to view something in the future * Don't bog your browser with so many open tabs * Turn tabs into a todo list
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Snooze Master |
ID | iimpkmjmadhfhnoammcenbchdelfckio |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/snooze-master/iimpkmjmadhfhnoammcenbchdelfckio |
คำอธิบาย | Snooze the selected tabs by clicking and selecting a wake up time. The tab's browser history is restored too if recently closed. |
ขนาดไฟล์ | 42.21 KB |
จำนวนการติดตั้ง | 110 |
เวอร์ชันปัจจุบัน | 0.2.8 |
อัปเดตครั้งล่าสุด | 2020-05-09 |
วันที่เผยแพร่ | 2020-05-08 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | em_te |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://em-te.github.io/privacy |
ภาษาที่รองรับ | de,en,fr,nl,es,ru,th,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extensionName__", "author": "Terry", "version": "0.2.8", "description": "__MSG_extensionDescription__", "manifest_version": 2, "default_locale": "en", "icons": { "24": "icon_24.png", "48": "icon_48.png", "96": "icon_96.png", "128": "icon_128.png" }, "permissions": [ "activeTab", "alarms", "contextMenus", "storage" ], "optional_permissions": [ "cookies", "notifications", "sessions", "tabs" ], "background": { "scripts": [ "common.js", "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "24": "icon_24.png", "48": "icon_48.png", "96": "icon_96.png" }, "default_title": "__MSG_browserActionTitle__", "default_popup": "popup.html", "browser_style": false }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+1" }, "description": "__MSG_extensionDescription__" } }, "options_ui": { "open_in_tab": true, "page": "viewer.html#options" } } |