Browser work station

Browser work station

Open all the websites you need at once!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Browser work station",
  "version": "0.0.1",
  "description": "Open all the websites you need at once!",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "32": "images/icons8-desk-lamp-100.png"
    },
    "icons": {
      "32": "images/icons8-desk-lamp-100.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}