Jumpcat
The missing command palette for GitHub
Hvad er Jumpcat?
Jumpcat er en Chrome-udvidelse udviklet af https://jumpcat.dev, og dens hovedfunktion er "The missing command palette for GitHub".
Udvidelsesskærmbilleder
Download Jumpcat-udvidelses-CRX-fil
Download Jumpcat-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | bdjamoegndceikaofgcnfkeekeoiffcn |
| Officiel URL | https://chromewebstore.google.com/detail/jumpcat/bdjamoegndceikaofgcnfkeekeoiffcn |
| Beskrivelse | The missing command palette for GitHub |
| Filstørrelse | 229 KB |
| Antal Installationer | 59 |
| Nuværende Version | 0.20.0 |
| Senest Opdateret | 2022-07-28 |
| Udgivelsesdato | 2021-11-02 |
| Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
| Udvikler | https://jumpcat.dev |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | http://jumpcat.dev/ |
| Hjælpeside-URL | https://github.com/stefanbuck/jumpcat/issues |
| URL til Fortrolighedspolitik Side | https://stefanbuck.com/privacy-policies |
| Understøttede Sprog | 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"
]
}
]
} | |