Plurk Savior

Plurk Savior

Automatically mute and hide plurks on your timeline based on keywords.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Plurk Savior",
  "description": "Automatically mute and hide plurks on your timeline based on keywords.",
  "version": "1.1.14",
  "browser_action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "24": "images/icon_24.png",
      "32": "images/icon_32.png"
    },
    "default_title": "Plurk Savior",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.plurk.com/*",
        "https://www.plurk.com/*",
        "https://plurk.com/*",
        "http://plurk.com/*"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  },
  "author": "Shorn",
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  }
}