Automatic Tab Opener

Automatic Tab Opener

Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Automatic Tab Opener",
  "description": "Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete",
  "version": "0.0.12",
  "minimum_chrome_version": "92",
  "options_page": "options.html",
  "background": {
    "service_worker": "assets/js/background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "alarms",
    "tabs"
  ],
  "icons": {
    "16": "assets/icons/icon.png",
    "32": "assets/icons/icon.png",
    "48": "assets/icons/icon.png",
    "128": "assets/icons/icon.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}