Snoozz - Snooze Tabs & Windows for later

Snoozz - Snooze Tabs & Windows for later

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

Merlin
Additional files are visible only to premium users

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": {
    "16": "icons/ext-icon-16.png",
    "32": "icons/ext-icon-32.png",
    "48": "icons/ext-icon-48.png",
    "128": "icons/ext-icon-128.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"
    }
  }
}