Web Task Switcher

Web Task Switcher

Keep ending up with so many tabs opened? Even over browser restarts? This is a new way to manage tasks you do in browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Web Task Switcher",
  "short_name": "Task manager for people using web alot",
  "description": "Keep ending up with so many tabs opened? Even over browser restarts? This is a new way to manage tasks you do in browser",
  "version": "0.1.0",
  "author": "Chethiya Abeysinghe",
  "icons": {
    "128": "img/icon.png"
  },
  "background": {
    "scripts": [
      "lib/underscore-min.js",
      "js/util.js",
      "js/task.js",
      "js/task_manager.js",
      "js/window.js",
      "js/tab.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "background"
  ],
  "offline_enabled": true,
  "browser_action": {
    "name": "Web Task Switcher",
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  }
}