OctoRef

Hightlight variable defenition, references

Co je OctoRef?

OctoRef je rozšíření Chrome vyvinuté restrry, a jeho hlavní funkcí je „Hightlight variable defenition, references“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření OctoRef

Stáhněte si soubory rozšíření OctoRef ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Comfortable navigation through JavaScript or TypeScript sources on Github with adding ability to find all references for variable and its definitions.
HOW TO USE:
 + click – highlight references and definition
 – clean highlightes
 + click (Mac:  + click) – jump to next usage place, if not in the viewport
 +  + click (Mac:  +  + click) – jump to definition

Report problems to https://github.com/restrry/octo-ref/issues                    

Základní Informace o Rozšíření

Název OctoRef OctoRef
ID ohmmdeimnfadblenffiiheeegbgddpok
Oficiální URL https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok
Popis Hightlight variable defenition, references
Velikost souboru 3.61 MB
Počet instalací 12
Aktuální Verze 0.1.0
Poslední Aktualizace 2018-09-24
Datum Vydání 2018-09-24
Vývojář restrry
Typ Platby free
Webové stránky Rozšíření https://github.com/restrry/octo-ref
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OctoRef",
    "description": "Hightlight variable defenition, references",
    "version": "0.1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                ".\/js\/contentscript.js"
            ],
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}