Github Hoverscope

Hoverzoom files and folders in Github

什麼是Github Hoverscope?

Github Hoverscope是由https://jamescui.com開發的Chrome擴展程式,該擴展的主要功能是“Hoverzoom files and folders in Github”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Github Hoverscope擴展crx文件

下載Github Hoverscope擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Github Hoverscope Github Hoverscope
ID ejdmejhddfennlaoejkdkkfcjpphkgbh
官方網址 https://chromewebstore.google.com/detail/github-hoverscope/ejdmejhddfennlaoejkdkkfcjpphkgbh
簡介 Hoverzoom files and folders in Github
檔案大小 1.9 MB
安裝次數 99
目前版本 0.0.1
更新時間 2013-09-25
上架時間 2013-09-25
評分 4.33/5 共 6 次評分
開發者 https://jamescui.com
付費類型 free
支援的語言 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"
    ]
}