Shiver Me Tabs!

Shiver Me Tabs!

We set sail and explore the web. Tab management for pirates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Shiver Me Tabs!",
  "description": "We set sail and explore the web. Tab management for pirates.",
  "version": "0.3",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "img/icon-16x16.png",
    "48": "img/icon-48x48.png",
    "128": "img/icon-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/jquery.js",
        "content.js"
      ],
      "css": []
    }
  ],
  "manifest_version": 2
}