Jumpcat
The missing command palette for GitHub
Cos'è Jumpcat?
Jumpcat è un'estensione di Chrome sviluppata da https://jumpcat.dev, e la sua funzione principale è "The missing command palette for GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jumpcat
Scarica i file di estensione Jumpcat in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Jumpcat |
ID | bdjamoegndceikaofgcnfkeekeoiffcn |
URL Ufficiale | https://chromewebstore.google.com/detail/jumpcat/bdjamoegndceikaofgcnfkeekeoiffcn |
Descrizione | The missing command palette for GitHub |
Dimensione del File | 229 KB |
Conteggio Installazioni | 59 |
Versione Corrente | 0.20.0 |
Ultimo Aggiornamento | 2022-07-28 |
Data di Pubblicazione | 2021-11-02 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://jumpcat.dev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://jumpcat.dev/ |
URL della Pagina di Aiuto | https://github.com/stefanbuck/jumpcat/issues |
URL della Pagina della Politica sulla Privacy | https://stefanbuck.com/privacy-policies |
Lingue Supportate | 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" ] } ] } |