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 |
官方URL | 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" ] } |