SmartSearch

SmartSearch

Quickly search a page for a word and its synonyms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SmartSearch",
  "description": "Quickly search a page for a word and its synonyms.",
  "version": "0.4.2",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-2.2.4.min.js",
        "jquery.mark.min.js",
        "searchScript.js"
      ],
      "css": [
        "highlightStyle.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "SmartSearch",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      },
      "description": "Open find box"
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "database.txt"
  ]
}