HubLighter - GitHub Code Highlighter

Highlight all selected code occurrences on any GitHub pull request page or source page

Hvad er HubLighter - GitHub Code Highlighter?

HubLighter - GitHub Code Highlighter er en Chrome-udvidelse udviklet af hvetko, og dens hovedfunktion er "Highlight all selected code occurrences on any GitHub pull request page or source page".

Udvidelsesskærmbilleder

screenshot

Download HubLighter - GitHub Code Highlighter-udvidelses-CRX-fil

Download HubLighter - GitHub Code Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Simple highlighting tool for GitHub code reviews. Highlight any code and all other occurrences on page will be highlighted.

Extension does not require any special permission or GitHub credentials. It is open source, hosted on GitHub.

This extension is not endorsed by, sponsored by, or affiliated with GitHub.                    

Grundlæggende oplysninger om udvidelsen

Navn HubLighter - GitHub Code Highlighter HubLighter - GitHub Code Highlighter
ID lglodolklpafcnjeaphjdijmfbmikkgn
Officiel URL https://chromewebstore.google.com/detail/hublighter-github-code-hi/lglodolklpafcnjeaphjdijmfbmikkgn
Beskrivelse Highlight all selected code occurrences on any GitHub pull request page or source page
Filstørrelse 58.39 KB
Antal Installationer 37
Nuværende Version 1.2.1
Senest Opdateret 2017-06-22
Udgivelsesdato 2017-06-22
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler hvetko
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/hvetko/hublighter
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "img\/hublighter-16.png",
        "default_popup": "html\/popup.html",
        "default_title": "HubLighter - GitHub Code Highlighter"
    },
    "content_scripts": [
        {
            "css": [
                "css\/hublighter.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "description": "Highlight all selected code occurrences on any GitHub pull request page or source page",
    "homepage_url": "https:\/\/github.com\/hvetko\/hublighter",
    "icons": {
        "128": "img\/hublighter-128.png",
        "16": "img\/hublighter-16.png",
        "48": "img\/hublighter-48.png"
    },
    "manifest_version": 2,
    "name": "HubLighter - GitHub Code Highlighter",
    "options_page": "html\/options.html",
    "permissions": [
        "storage",
        "https:\/\/github.com\/"
    ],
    "version": "1.2.1"
}