github-find
A plugin for searcing within Github repos.
Что такое github-find?
github-find - это расширение Chrome, разработанное Aidan Feldman, и его основная функция - "A plugin for searcing within Github repos.".
Снимки экрана расширения
Скачать файл CRX расширения github-find
Скачайте файлы расширений github-find в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
Официальный URL | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
Описание | A plugin for searcing within Github repos. |
Размер файла | 40.7 KB |
Количество установок | 164 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2013-02-18 |
Дата публикации | 2013-02-17 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Aidan Feldman |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/afeld/github-find |
URL страницы помощи | https://github.com/afeld/github-find/issues |
Поддерживаемые языки | 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" ] } |