OctoRef

Hightlight variable defenition, references

O que é OctoRef?

OctoRef é uma extensão do Chrome desenvolvida por restrry, e sua principal característica é "Hightlight variable defenition, references".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão OctoRef

Baixe arquivos de extensão OctoRef no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome OctoRef OctoRef
ID ohmmdeimnfadblenffiiheeegbgddpok
URL Oficial https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok
Descrição Hightlight variable defenition, references
Tamanho do Arquivo 3.61 MB
Contagem de Instalações 12
Versão Atual 0.1.0
Última Atualização 2018-09-24
Data de Publicação 2018-09-24
Desenvolvedor restrry
Tipo de Pagamento free
Site da Extensão https://github.com/restrry/octo-ref
Idiomas Suportados 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"
    ]
}