Keyword Minus for Google Plus™

Keyword Minus for Google Plus™

Filter keywords on Google Plus™ webpage and hide corresponding posts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Keyword Minus for Google Plus™",
  "version": "0.1.1",
  "author": "KTachibanaM,Catofes",
  "description": "Filter keywords on Google Plus™ webpage and hide corresponding posts",
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "js/googleminus.js",
        "chrome_js/main.js"
      ],
      "matches": [
        "https://plus.google.com/*"
      ]
    }
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "options.html"
  },
  "background": {
    "scripts": [
      "chrome_js/persistent_runtime_messenger.js",
      "js/jquery.js",
      "js/sync.js",
      "js/persistent.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "permissions": [
    "alarms"
  ]
}