Jumpcat
The missing command palette for GitHub
Что такое Jumpcat?
Jumpcat - это расширение Chrome, разработанное https://jumpcat.dev, и его основная функция - "The missing command palette for GitHub".
Снимки экрана расширения
Скачать файл CRX расширения Jumpcat
Скачайте файлы расширений Jumpcat в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Command palette for easy beginner and power user navigation on GitHub.com Once installed hit cmd + j (or ctrl +j on windows/linux) to open the command palette
Основная информация о расширении
Название | Jumpcat |
ID | bdjamoegndceikaofgcnfkeekeoiffcn |
Официальный URL | https://chromewebstore.google.com/detail/jumpcat/bdjamoegndceikaofgcnfkeekeoiffcn |
Описание | The missing command palette for GitHub |
Размер файла | 229 KB |
Количество установок | 59 |
Текущая Версия | 0.20.0 |
Последнее Обновление | 2022-07-28 |
Дата публикации | 2021-11-02 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | https://jumpcat.dev |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://jumpcat.dev/ |
URL страницы помощи | https://github.com/stefanbuck/jumpcat/issues |
URL страницы политики конфиденциальности | https://stefanbuck.com/privacy-policies |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jumpcat", "version": "0.20.0", "description": "The missing command palette for GitHub", "homepage_url": "https:\/\/github.com\/stefanbuck\/jumpcat", "manifest_version": 2, "minimum_chrome_version": "74", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "67.0" } }, "omnibox": { "keyword": "j" }, "icons": { "16": "\/assets\/icon-16.png", "48": "\/assets\/icon-48.png", "128": "\/assets\/icon-128.png" }, "permissions": [ "storage", "https:\/\/github.com\/" ], "options_ui": { "chrome_style": true, "page": "\/app\/options\/options.html" }, "background": { "persistent": false, "scripts": [ "\/app\/background\/index.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "\/assets\/style.css" ], "js": [ "\/app\/index.js" ] } ] } |