github-find
A plugin for searcing within Github repos.
Qu'est-ce que github-find ?
github-find est une extension Chrome développée par Aidan Feldman, et sa fonction principale est "A plugin for searcing within Github repos.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension github-find
Téléchargez les fichiers d'extension github-find au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
URL Officiel | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
Description | A plugin for searcing within Github repos. |
Taille du Fichier | 40.7 KB |
Nombre d'Installations | 164 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2013-02-18 |
Date de Publication | 2013-02-17 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Aidan Feldman |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/afeld/github-find |
URL de la Page d'Aide | https://github.com/afeld/github-find/issues |
Langues Prises en Charge | 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" ] } |