Select filter

Select filter

Add an input before every <select> list to filter <option>

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Select filter",
  "description": "Add an input before every <select> list to filter <option>",
  "author": "Vincent Paré",
  "manifest_version": 2,
  "version": "2",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "128": "img/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "vendor/jquery-1.7.2_min.js",
        "select-filter.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "img/icon-off.png",
    "default_title": "Select filter"
  }
}