Jumpcat
The missing command palette for GitHub
Qu'est-ce que Jumpcat ?
Jumpcat est une extension Chrome développée par https://jumpcat.dev, et sa fonction principale est "The missing command palette for GitHub".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Jumpcat
Téléchargez les fichiers d'extension Jumpcat 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
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
Informations de Base sur l'Extension
Nom | Jumpcat |
ID | bdjamoegndceikaofgcnfkeekeoiffcn |
URL Officiel | https://chromewebstore.google.com/detail/jumpcat/bdjamoegndceikaofgcnfkeekeoiffcn |
Description | The missing command palette for GitHub |
Taille du Fichier | 229 KB |
Nombre d'Installations | 59 |
Version Actuelle | 0.20.0 |
Dernière Mise à Jour | 2022-07-28 |
Date de Publication | 2021-11-02 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | https://jumpcat.dev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://jumpcat.dev/ |
URL de la Page d'Aide | https://github.com/stefanbuck/jumpcat/issues |
URL de la Page de Politique de Confidentialité | https://stefanbuck.com/privacy-policies |
Langues Prises en Charge | 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" ] } ] } |