Skittle Search

Skittle Search

Skittle search is a search extension that allows you to search for keywords you highlight with your cursor quickly and easily…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "event_h.js"
    ]
  },
  "browser_action": {
    "default_icon": "128.png",
    "default_title": "Skittle Search",
    "name": "Yummy nummy search"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "selection.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "manifest_version": 2,
  "name": "Skittle Search",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "version": "1.5.5",
  "web_accessible_resources": [
    "icons/*.png",
    "options.html"
  ]
}