Snoozz - Snooze Tabs & Windows for later

Declutter your browser by snoozing tabs and windows until you actually need them.

ما هو Snoozz - Snooze Tabs & Windows for later؟

Snoozz - Snooze Tabs & Windows for later هو إضافة Chrome تم تطويرها بواسطة https://snoozz.me، والميزة الرئيسية لها هي "Declutter your browser by snoozing tabs and windows until you actually need them.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Snoozz - Snooze Tabs & Windows for later

قم بتنزيل ملفات الامتداد Snoozz - Snooze Tabs & Windows for later بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Snoozz tabs and windows now and have them reopen automatically later. 

Snooze all your windows on a Friday evening, and when open up your laptop on Monday morning, they will all be there waiting for you. All your tabs will be organised exactly the same - it's like they never left.

Key Features:

- Snooze individual tabs, selected tabs or full windows
- Choose from a set of predefined times to snooze your tabs in just a click.
- Open tabs at fixed intervals (every weekday at 10am etc)
- Right click a link on any website and snooze a tab without even opening it.
- Configure your own keyboard shortcuts or use the ones built in
- Use the Nap Room to see and edit all sleeping tabs and the ones that already woke up
- Extremely lightweight and fully open source
- Export and Import Snoozz data.

None of your data is collected or tracked in any way. Your data stays on your device and the extension can be used completely offline.

CHANGELOG
A complete list of all versions and changes can be found on the Snoozz website  (https://snoozz.me/changelog)

Changes in v2.5

- Recurring Snooze Times!
- Duplicate Sleeping Tabs
- Selected Tabs grouped together
- Keyboard Shortcuts in the Popup
- Hide sections in the Nap Room
- Snooze other extension / add-on pages
- "System" option for selecting a dark/light theme

------

Saving tab bars and battery life since May 2020.                    

معلومات أساسية عن التمديد

الاسم Snoozz - Snooze Tabs & Windows for later Snoozz - Snooze Tabs & Windows for later
ID lklendgldejcnkkaldoggoapclkepgfb
عنوان URL الرسمي https://chromewebstore.google.com/detail/snoozz-snooze-tabs-window/lklendgldejcnkkaldoggoapclkepgfb
الوصف Declutter your browser by snoozing tabs and windows until you actually need them.
حجم الملف 123 KB
عدد التثبيتات 6,000
النسخة الحالية 2.5
آخر تحديث 2021-12-11
تاريخ النشر 2020-07-11
تقييم 4.28/5 مجموع تقييمات 53
المطور https://snoozz.me
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://snoozz.me
عنوان صفحة المساعدة https://github.com/rohanb10/snooze/issues
عنوان صفحة سياسة الخصوصية https://github.com/rohanb10/snoozz-tab-snoozing/blob/master/docs/PRIVACY.md
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Snoozz - Snooze Tabs & Windows for later",
    "short_name": "Snoozz",
    "description": "Declutter your browser by snoozing tabs and windows until you actually need them.",
    "version": "2.5",
    "icons": {
        "128": "icons\/ext-icon-128.png",
        "48": "icons\/ext-icon-48.png",
        "32": "icons\/ext-icon-32.png",
        "16": "icons\/ext-icon-16.png"
    },
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "html\/popup.html"
    },
    "author": "Rohan Bhansali",
    "options_ui": {
        "page": "html\/settings.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "scripts\/dayjs.min.js",
            "scripts\/common.js",
            "scripts\/poll.js",
            "scripts\/background.js"
        ]
    },
    "offline_enabled": true,
    "permissions": [
        "alarms",
        "contextMenus",
        "idle",
        "notifications",
        "storage",
        "tabs"
    ],
    "commands": {
        "nap-room": {
            "description": "Show me my sleeping tabs"
        },
        "startup": {
            "description": "Snooze until the next time you launch your browser"
        },
        "in-an-hour": {
            "description": "Snooze for an hour"
        },
        "today-morning": {
            "description": "Snooze till today morning"
        },
        "today-evening": {
            "description": "Snooze till today evening"
        },
        "tom-morning": {
            "description": "Snooze till tomorrow morning"
        },
        "tom-evening": {
            "description": "Snooze till tomorrow evening"
        },
        "weekend": {
            "description": "Snooze till this Saturday"
        },
        "monday": {
            "description": "Snooze till next Monday"
        },
        "week": {
            "description": "Snooze till one week from now"
        },
        "month": {
            "description": "Snooze till one month from now"
        }
    }
}