Helium

Helium

INFLATE THE INTERNET!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Helium",
  "description": "INFLATE THE INTERNET!",
  "version": "1.0.2",
  "homepage_url": "http://tifslama.com/",
  "icons": {
    "16": "helium_logo_19_on.png",
    "48": "helium_logo_48.png",
    "128": "helium_logo_128.png"
  },
  "browser_action": {
    "name": "Mouseover to inflate",
    "default_icon": "helium_logo_19_off.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery-1.11.1.min.js"
      ]
    }
  ],
  "permissions": [
    "background",
    "tabs",
    "notifications",
    "<all_urls>",
    "file:///*/*",
    "file://*/*",
    "http://*/*",
    "activeTab",
    "pageCapture"
  ]
}