github-find
A plugin for searcing within Github repos.
Was ist github-find?
github-find ist eine Chrome-Erweiterung, die von Aidan Feldman entwickelt wurde, und ihr Hauptmerkmal ist "A plugin for searcing within Github repos.".
Erweiterungsscreenshots
github-find-Erweiterungs-CRX-Datei herunterladen
Laden Sie github-find-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
Offizielle URL | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
Beschreibung | A plugin for searcing within Github repos. |
Dateigröße | 40.7 KB |
Installationsanzahl | 164 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2013-02-18 |
Veröffentlichungsdatum | 2013-02-17 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Aidan Feldman |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/afeld/github-find |
Hilfeseite URL | https://github.com/afeld/github-find/issues |
Unterstützte Sprachen | 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" ] } |