Gpp

Gpp

A set of small improvements for G+

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gpp",
  "version": "0.0.0.1",
  "manifest_version": 2,
  "description": "A set of small improvements for G+",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://plus.google.com/*"
      ],
      "js": [
        "lib/jquery-1.8.3.min.js",
        "scripts/main.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  }
}