DI.se slim

DI.se slim

Removes header and other fuzzy things on di.se.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DI.se slim ",
  "version": "0.4",
  "description": "Removes header and other fuzzy things on di.se.",
  "manifest_version": 2,
  "icons": {
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.di.se/*",
        "http://*.di.se/*",
        "https://*.di.se/*"
      ],
      "exclude_matches": [
        "https://trader.di.se/*",
        "http://trader.di.se/*"
      ],
      "css": [
        "di.css"
      ],
      "js": [
        "js/libs/jquery-1.7.1.min.js",
        "js/di.js"
      ],
      "all_frames": true
    }
  ]
}