Clippy 2: Revenge of the Clip

Clippy 2: Revenge of the Clip

Finally, Clippy comes to Chrome! Get help browsing the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Clippy 2: Revenge of the Clip",
  "short_name": "Clippy",
  "version": "1.2",
  "manifest_version": 2,
  "description": "Finally, Clippy comes to Chrome! Get help browsing the web.",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "clippy-revenge.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "clippy.css"
      ],
      "js": [
        "jquery-1.8.2.min.js",
        "clippy.js",
        "sounds-mp3.js",
        "agent.js",
        "clippy-revenge-content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "map.png"
  ]
}