nosey

Extension to browse libraries/plugins on github while surfing through source code

O que é nosey?

nosey é uma extensão do Chrome desenvolvida por sebastianvera, e sua principal característica é "Extension to browse libraries/plugins on github while surfing through source code".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão nosey

Baixe arquivos de extensão nosey 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

                        Nosey it's a chrome extension that enables you to easily browse libraries/plugins when surfing through github repositories source code. It works by taking you to the library's documentation or repository page just clicking on it. 

If you are constantly googling for libraries when browsing repository's code, this extension is for you. I know, you can just type it on the url bar ... but I'm lazy.

It currently works with javascript, typescript, go and .vim files. If the surfed file does not have a known supported extension, nosey won't add the annotations, so clicking a library will do nothing, but you can manually select the language parser by clicking nosey extension icon next to chrome's url bar.                    

Informações Básicas da Extensão

Nome nosey nosey
ID aahegjigldllknbphcibmhcjehnfjoga
URL Oficial https://chromewebstore.google.com/detail/nosey/aahegjigldllknbphcibmhcjehnfjoga
Descrição Extension to browse libraries/plugins on github while surfing through source code
Tamanho do Arquivo 26.13 KB
Contagem de Instalações 13
Versão Atual 1.1.0
Última Atualização 2017-07-12
Data de Publicação 2017-07-11
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor sebastianvera
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sebastianvera/nosey
URL da Página de Ajuda https://github.com/sebastianvera/nosey
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "nosey",
    "description": "Extension to browse libraries\/plugins on github while surfing through source code",
    "version": "1.1.0",
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persitent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/www.github.com\/*"
            ],
            "js": [
                ".\/index.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/logo16.png",
        "48": ".\/logo48.png",
        "128": ".\/logo128.png"
    },
    "page_action": {
        "default_icon": {
            "16": ".\/logo16.png",
            "24": ".\/logo24.png",
            "32": ".\/logo32.png"
        },
        "default_popup": ".\/popup.html"
    },
    "permissions": [
        "tabs"
    ]
}