Github Hoverscope

Hoverzoom files and folders in Github

O que é Github Hoverscope?

Github Hoverscope é uma extensão do Chrome desenvolvida por https://jamescui.com, e sua principal característica é "Hoverzoom files and folders in Github".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Github Hoverscope

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

                        This extension enables users to conveniently browse through files and directories on Github by providing hover zoom capability over file/folder links.

* hover mouse over file or folder links to see its content in tooltip without having to click and redirect the page
* contents within the tooltip is clickable and scrollable
* tooltip closes automatically on mouse-out from inside the tooltip
* tooltip can be closed manually by clicking the close button on the top right of the tooltip                    

Informações Básicas da Extensão

Nome Github Hoverscope Github Hoverscope
ID ejdmejhddfennlaoejkdkkfcjpphkgbh
URL Oficial https://chromewebstore.google.com/detail/github-hoverscope/ejdmejhddfennlaoejkdkkfcjpphkgbh
Descrição Hoverzoom files and folders in Github
Tamanho do Arquivo 1.9 MB
Contagem de Instalações 99
Versão Atual 0.0.1
Última Atualização 2013-09-25
Data de Publicação 2013-09-25
Classificação 4.33/5 Total de 6 Avaliações
Desenvolvedor https://jamescui.com
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Hoverscope",
    "version": "0.0.1",
    "description": "Hoverzoom files and folders in Github",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon16.png",
            "38": "images\/icon48.png"
        },
        "default_title": "Github Hoverscope"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "css": [
                "\/lib\/jquery-ui\/css\/ui-lightness\/jquery-ui-1.10.3.custom.min.css",
                "\/lib\/css\/jquery.qtip.min.css",
                "\/lib\/css\/tooltip.css"
            ],
            "js": [
                "\/lib\/jquery\/jquery-1.10.2.js",
                "\/lib\/jquery.qtip.min.js",
                "\/lib\/jquery.hoverIntent.minified.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "http:\/\/github.com\/*",
        "tabs"
    ]
}