Hide Social Toolbar on SPIEGEL Online

Hide Social Toolbar on SPIEGEL Online

Hides the social sharing bar at the bottom of SPON

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hide Social Toolbar on SPIEGEL Online",
  "description": "Hides the social sharing bar at the bottom of SPON",
  "version": "1.0",
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon-19.png",
    "default_title": "block social toolbar on SPON"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.spiegel.de/*"
      ],
      "js": [
        "rmv.js"
      ]
    }
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}