github-find
A plugin for searcing within Github repos.
Co to jest github-find?
github-find to rozszerzenie Chrome opracowane przez Aidan Feldman, a jego główną funkcją jest „A plugin for searcing within Github repos.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia github-find
Pobierz pliki rozszerzeń github-find w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | blocadmfchabihonegcgjjikbbmpliph |
| Oficjalny URL | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
| Opis | A plugin for searcing within Github repos. |
| Rozmiar pliku | 40.7 KB |
| Liczba instalacji | 164 |
| Aktualna Wersja | 1.0.2 |
| Ostatnia Aktualizacja | 2013-02-18 |
| Data Publikacji | 2013-02-17 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | Aidan Feldman |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/afeld/github-find |
| Adres URL Strony Pomocy | https://github.com/afeld/github-find/issues |
| Obsługiwane Języki | 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"
]
} | |