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 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 फ़ाइल डाउनलोड करें
crx प्रारूप में Snooze Master एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |