github-find
A plugin for searcing within Github repos.
Hvad er github-find?
github-find er en Chrome-udvidelse udviklet af Aidan Feldman, og dens hovedfunktion er "A plugin for searcing within Github repos.".
Udvidelsesskærmbilleder
Download github-find-udvidelses-CRX-fil
Download github-find-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
Officiel URL | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
Beskrivelse | A plugin for searcing within Github repos. |
Filstørrelse | 40.7 KB |
Antal Installationer | 164 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2013-02-18 |
Udgivelsesdato | 2013-02-17 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Aidan Feldman |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/afeld/github-find |
Hjælpeside-URL | https://github.com/afeld/github-find/issues |
Understøttede Sprog | 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" ] } |