G+ Show Saved Searches

G+ Show Saved Searches

Adds a card on the G+ main page that shows saved searches right underneath the share card.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "G+ Show Saved Searches",
  "version": "1.8.1",
  "description": "Adds a card on the G+ main page that shows saved searches right underneath the share card.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "css": [
        "show_saved_searches.css"
      ],
      "js": [
        "jquery-1.7.2.min.js",
        "show_saved_searches.js"
      ],
      "matches": [
        "https://plus.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "buttons.png"
  ]
}