Personalize for Google Plus™

Personalize for Google Plus™

Only display non-public posts in the Google Plus stream

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Personalize for Google Plus™",
  "description": "Only display non-public posts in the Google Plus stream",
  "version": "2.12",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "personalize.js"
      ],
      "matches": [
        "https://plus.google.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "https://plus.google.com/*"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}