+Widget

+Widget

Add some widgets to Google+ page~ by 五月栞 (tengattack)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "+Widget",
  "short_name": "pluswidget",
  "default_locale": "en",
  "version": "1.0.3",
  "description": "__MSG_description__",
  "permissions": [
    "storage",
    "tabs",
    "http://plus.google.com/",
    "https://plus.google.com/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://plus.google.com/*",
        "https://plus.google.com/*"
      ],
      "js": [
        "js/jquery-2.1.3.min.js",
        "js/googlepluswidget.js",
        "js/gpw-db.js",
        "js/gpw-page.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "web_accessible_resources": [
    "widget/*"
  ],
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "page_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_title": "+Widget"
  },
  "offline_enabled": false,
  "homepage_url": "https://chrome.google.com/webstore/detail/hflefagklffjeimdjeaaeongjadjdefp"
}