Tab Scheduler with auto open and close

Tab Scheduler with auto open and close

Browser tabs will be open and close automatically at selected time. User can activate/deactive list based on requirement

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "src/js/background.js"
  },
  "action": {
    "default_popup": "src/html/popup.html",
    "default_icon": "src/images/icon32.png",
    "default_title": "__MSG_appName__"
  },
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "src/images/icon16.png",
    "48": "src/images/icon48.png",
    "128": "src/images/icon128.png"
  },
  "default_locale": "en",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "permissions": [
    "alarms",
    "tabs",
    "storage",
    "notifications",
    "power"
  ],
  "host_permissions": [
    "https://softpulseinfotech.com/*"
  ],
  "offline_enabled": true,
  "version": "1.4.14"
}