Tab Spaces

Tab Spaces

Workspaces for your tabs!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Spaces",
  "description": "Workspaces for your tabs!",
  "version": "0.92",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "res/icon_48.png",
    "icons": {
      "16": "res/icon_16.png",
      "48": "res/icon_48.png",
      "128": "res/icon_128.png"
    }
  },
  "background": {
    "scripts": [
      "libs/spark-md5.js",
      "models/models.js",
      "backgroundScripts/idxDb.js",
      "backgroundScripts/storageService.js",
      "backgroundScripts/spaceManager.js",
      "backgroundScripts/userPrefsManager.js",
      "backgroundScripts/background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "newtab/newtab.html"
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "activeTab",
    "tabs"
  ],
  "web_accessible_resources": [
    "res/background.jpg"
  ]
}