Chromed Hipchat

Chromed Hipchat

Some tweaks to hipchat.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chromed Hipchat",
  "version": "1.4",
  "description": "Some tweaks to hipchat.com",
  "permissions": [
    "https://www.hipchat.com/"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://*.hipchat.com/chat"
      ],
      "css": [
        "css/chromed.css",
        "css/probably-nsfw.css"
      ],
      "js": [
        "javascripts/vendor/jquery.js",
        "javascripts/vendor/jquery.plugins.js",
        "javascripts/vendor/underscore.js",
        "javascripts/namespace.js",
        "javascripts/templates.js",
        "javascripts/emoticons.js",
        "javascripts/emoticon_chooser.js",
        "javascripts/chromed.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "html/options.html"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "javascripts/background.js"
    ]
  },
  "options_page": "html/options.html"
}