Toast - Save Tabs for Later

Toast - Save Tabs for Later

Feel free to close all ‘pending’ tabs in your browser. Use Toast to save and access tabs whenever you need.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_manifest_name__",
  "description": "__MSG_manifest_description__",
  "version": "4.0.7",
  "action": {
    "default_title": "__MSG_manifest_browser_action_title__",
    "default_popup": "login.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "cookies",
    "activeTab",
    "tabs",
    "storage",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "*://*.dotoast.com/*"
  ],
  "commands": {
    "Save Session...": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "MacCtrl+Shift+S"
      },
      "description": "Save All Tabs..."
    },
    "Save and Share Session...": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "MacCtrl+Shift+E"
      },
      "description": "Save All Tabs and Share Folder..."
    },
    "Add Current Page to Session...": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "MacCtrl+Shift+U"
      },
      "description": "Add Current Tab to Folder..."
    },
    "Open Web Session Manager": {
      "suggested_key": {
        "default": "Ctrl+Shift+M",
        "mac": "MacCtrl+Shift+M"
      },
      "description": "Open Web App"
    }
  }
}