Super Chrome

Super Chrome

Make browsing way more cool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Super Chrome",
  "description": "Make browsing way more cool.",
  "version": "0.0.1",
  "author": "Hamish Macpherson",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_title": "Super Chrome",
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*"
  ],
  "manifest_version": 2,
  "icons": {
    "32": "extension32.png",
    "48": "extension48.png",
    "128": "extension128.png"
  }
}