GitHub Highlight Selected

Highlight selected word in GitHub source view like Sublime Text

What is GitHub Highlight Selected?

GitHub Highlight Selected is a Chrome extension developed by Xhacker Liu, and its main feature is "Highlight selected word in GitHub source view like Sublime Text".

Extension Screenshots

screenshot

Download GitHub Highlight Selected Extension CRX File

Download GitHub Highlight Selected extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Highlight selected word in GitHub source view like in Sublime Text.

Check out the code on GitHub: https://github.com/Nuclides/github-highlight-selected                    

Extension Basic Information

Name GitHub Highlight Selected GitHub Highlight Selected
ID lhiklbgjcblimmjjflobpncgihagcmbj
Official URL https://chromewebstore.google.com/detail/github-highlight-selected/lhiklbgjcblimmjjflobpncgihagcmbj
Description Highlight selected word in GitHub source view like Sublime Text
File Size 156 KB
Installation Count 1,476
Current Version 2.3
Last Updated 2019-10-09
Publish Date 2019-10-08
Rating 4.47/5 Total 17 Ratings
Developer Xhacker Liu
Payment Type free
Supported Languages en
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": [
        ""
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}