Tab Snooze

Tab Snooze

Snooze tabs to open at a specific time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Snooze",
  "version": "0.1.5",
  "author": "Ramkumar K R",
  "description": "Snooze tabs to open at a specific time",
  "permissions": [
    "tabs",
    "notifications",
    "alarms",
    "storage"
  ],
  "browser_action": {
    "default_icon": "resources/icon.png",
    "default_title": "Snooze",
    "default_popup": "popup/index.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "js/browser-polyfill.min.js",
      "js/background.js"
    ]
  },
  "icons": {
    "48": "resources/icon.png"
  },
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  }
}