github-find
A plugin for searcing within Github repos.
什麼是github-find?
github-find是由Aidan Feldman開發的Chrome擴展程式,該擴展的主要功能是“A plugin for searcing within Github repos.”。
擴展截圖
下載github-find擴展crx文件
下載github-find擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
When viewing a repository on the Github website, an Octocat icon will appear in the address bar - press CTL-SHIFT-f and a search box will appear. Check out the source here: https://github.com/afeld/github-find
擴展基本資訊
名稱 | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
官方網址 | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
簡介 | A plugin for searcing within Github repos. |
檔案大小 | 40.7 KB |
安裝次數 | 164 |
目前版本 | 1.0.2 |
更新時間 | 2013-02-18 |
上架時間 | 2013-02-17 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Aidan Feldman |
付費類型 | free |
擴展官網 | https://github.com/afeld/github-find |
說明頁面URL | https://github.com/afeld/github-find/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "github-find", "version": "1.0.2", "manifest_version": 2, "icons": { "16": "favicon.ico" }, "description": "A plugin for searcing within Github repos.", "homepage_url": "https:\/\/github.com\/afeld\/github-find", "background": { "scripts": [ "jquery-1.9.1.min.js", "background.js" ], "persistent": false }, "page_action": { "default_icon": "favicon.ico", "default_title": "Click or press Ctrl+Shift+F to search this repository." }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "exclude_globs": [ "*github.com\/*\/" ], "js": [ "jquery-1.9.1.min.js", "jquery.ui.position.min.js", "content-keydown.js" ] } ], "permissions": [ "tabs" ] } |