Session Sync

Session Sync

Save sessions as bookmarks and access them across devices. Advanced Session Manager: edit, save, change, restore. It can also be your best Bookmark Manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Session Sync",
  "version": "3.1.12",
  "author": "Gabriel Ivanica",
  "description": "Save sessions as bookmarks and sync them through Firefox Sync (or any other sync engine).\nPowerful session management - organize, edit, change, save, restore, etc\n",
  "homepage_url": "https://github.com/ReDEnergy/SessionSync",
  "manifest_version": 2,
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "16": "data/images/icon16.png",
    "32": "data/images/icon32.png",
    "48": "data/images/icon48.png",
    "64": "data/images/icon64.png",
    "96": "data/images/icon96.png",
    "128": "data/images/icon128.png"
  },
  "background": {
    "scripts": [
      "scripts/main.js",
      "scripts/favicon-service.js",
      "scripts/session-management.js",
      "scripts/session-history.js",
      "scripts/development.js"
    ]
  },
  "permissions": [
    "storage",
    "bookmarks",
    "tabs",
    "clipboardWrite",
    "unlimitedStorage"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "data/images/icon16.png",
      "32": "data/images/icon32.png",
      "64": "data/images/icon64.png"
    },
    "default_title": "Session Sync",
    "default_popup": "data/session-sync.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      },
      "description": "Toggle Widget"
    },
    "session-sync-detach-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+V"
      },
      "description": "Tab View"
    },
    "session-sync-detach-window": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      },
      "description": "Window View"
    }
  }
}