OctoRef

Hightlight variable defenition, references

Hvad er OctoRef?

OctoRef er en Chrome-udvidelse udviklet af restrry, og dens hovedfunktion er "Hightlight variable defenition, references".

Udvidelsesskærmbilleder

screenshot

Download OctoRef-udvidelses-CRX-fil

Download OctoRef-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

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn OctoRef OctoRef
ID ohmmdeimnfadblenffiiheeegbgddpok
Officiel URL https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok
Beskrivelse Hightlight variable defenition, references
Filstørrelse 3.61 MB
Antal Installationer 12
Nuværende Version 0.1.0
Senest Opdateret 2018-09-24
Udgivelsesdato 2018-09-24
Udvikler restrry
Betalingsmetode free
Udvidelseswebsted https://github.com/restrry/octo-ref
Understøttede Sprog 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"
    ]
}