Filter

Filter

Making the internet more tolerable

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon48.png"
    },
    "default_title": "Click to disable."
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery.min.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Making the internet more tolerable",
  "icons": {
    "128": "images/icon128.png"
  },
  "manifest_version": 2,
  "name": "Filter",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "version": "0.2.1"
}