Workspace Manager

Workspace Manager

Tab Manager and Productivity Extension - save tabs as workspaces and revisit them in the future

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    "files/*",
    "js/languages.json"
  ],
  "name": "Workspace Manager",
  "version": "0.980",
  "manifest_version": 2,
  "short_name": "Workspace Tab Manager extension.",
  "description": "Tab Manager and Productivity Extension - save tabs as workspaces and revisit them in the future",
  "icons": {
    "16": "images/16x16.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/16x16.png",
      "48": "images/48x48.png",
      "128": "images/128x128.png"
    }
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com https://ssl.google-analytics.com https://www.googletagmanager.com; object-src 'self'"
}