github-find
A plugin for searcing within Github repos.
What is github-find?
github-find is a Chrome extension developed by Aidan Feldman, and its main feature is "A plugin for searcing within Github repos.".
Extension Screenshots
Download github-find Extension CRX File
Download github-find extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | blocadmfchabihonegcgjjikbbmpliph |
| Official URL | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
| Description | A plugin for searcing within Github repos. |
| File Size | 40.7 KB |
| Installation Count | 164 |
| Current Version | 1.0.2 |
| Last Updated | 2013-02-18 |
| Publish Date | 2013-02-17 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | Aidan Feldman |
| Payment Type | free |
| Extension Website | https://github.com/afeld/github-find |
| Help Page URL | https://github.com/afeld/github-find/issues |
| Supported Languages | 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"
]
} | |