github-find
A plugin for searcing within Github repos.
Cos'è github-find?
github-find è un'estensione di Chrome sviluppata da Aidan Feldman, e la sua funzione principale è "A plugin for searcing within Github repos.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione github-find
Scarica i file di estensione github-find in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
URL Ufficiale | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
Descrizione | A plugin for searcing within Github repos. |
Dimensione del File | 40.7 KB |
Conteggio Installazioni | 164 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2013-02-18 |
Data di Pubblicazione | 2013-02-17 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Aidan Feldman |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/afeld/github-find |
URL della Pagina di Aiuto | https://github.com/afeld/github-find/issues |
Lingue Supportate | 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" ] } |