GitHub Highlight Selected

GitHub Highlight Selected

Highlight selected word in GitHub source view like Sublime Text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitHub Highlight Selected",
  "version": "2.3",
  "manifest_version": 2,
  "description": "Highlight selected word in GitHub source view like Sublime Text",
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "src/highlight-selected.js"
      ],
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*"
      ]
    }
  ],
  "minimum_chrome_version": "20",
  "permissions": [
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}