Daily Tabs with delay and sync

Daily Tabs with delay and sync

Open daily websites with the click of a button. Customize lists for each day of the week, as well as an "every day" list. Optionally delay next tab when opening multiple tabs. Settings synced with Firefox account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.3.8",
  "developer": {
    "name": "T Fischer"
  },
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "contextMenus"
  ],
  "icons": {
    "48": "icons/tabs-48.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/tabs-16.png",
      "32": "icons/tabs-32.png",
      "64": "icons/tabs-64.png"
    }
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+O"
      }
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "dailytabs.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{aa1ed06a-7788-11eb-9439-0242ac130002}",
      "strict_min_version": "57.0a1"
    }
  }
}