Search and Highlight

Search and Highlight

This extension highlights the specified word. You can specify any number of words separated by spaces. この拡張機能は指定した単語をハイライトします。 任意の個数の単語をスペース区切りで指定します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Search and Highlight",
  "version": "1.3.1.0",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "icons": {
    "128": "icons/searchAndHighlightIcon.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "icons/searchAndHighlightIcon.png"
    },
    "default_title": "Search and Highlight",
    "default_popup": "popup/popup.html",
    "browser_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file:///*/*"
      ],
      "js": [
        "contentScripts/scripts/contentScript.js",
        "contentScripts/scripts/highlight.js"
      ],
      "css": [
        "contentScripts/css/highlight.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L"
      }
    },
    "command_toggleHighlightNow": {
      "suggested_key": {
        "default": "Alt+Shift+L"
      },
      "description": "Toggle Highlight"
    }
  },
  "permissions": [
    "storage"
  ]
}