OU Menu Off

Vypíná hlavní menu na webu www.osu.cz
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "OU Menu Off",
  "description": "Vypíná hlavní menu na webu www.osu.cz",
  "version": "1.0",
  "icons": {
    "16": "ico_16.png",
    "32": "ico_32.png",
    "48": "ico_48.png",
    "128": "ico_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.osu.cz/",
        "http://*.osu.cz/*"
      ],
      "js": [
        "ou_menu_off.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ]
}