Skype (Pin Tab)

Skype (Pin Tab)

Switch to Skype (Pin Tab) with a single click or a Hot Key (Alt+4)! Also displays unread count in the add-on icon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Skype (Pin Tab)",
  "description": "Switch to Skype (Pin Tab) with a single click or a Hot Key (Alt+4)!",
  "version": "1.1resigned1",
  "manifest_version": 2,
  "permissions": [
    "*://*.skype.com/*",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "48": "icons/skype.png"
  },
  "browser_action": {
    "default_icon": "icons/skype.png",
    "default_title": "Switch to Skype (Pin Tab)"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+4"
      },
      "description": "Switch to Skype (Pin Tab)"
    }
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*.skype.com/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e26659c9-fe4b-4b01-bbb4-e38422719588}"
    }
  }
}