Github Hoverscope
Hoverzoom files and folders in Github
Github Hoverscopeとは何ですか?
Github Hoverscopeはhttps://jamescui.comによって開発されたChromeの拡張機能で、その主な機能は「Hoverzoom files and folders in Github」です。
拡張機能のスクリーンショット
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 |
ID | ejdmejhddfennlaoejkdkkfcjpphkgbh |
公式URL | 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" ] } |