Jumpcat
The missing command palette for GitHub
Vad är Jumpcat?
Jumpcat är en Chrome-tillägg utvecklad av https://jumpcat.dev, och dess huvudfunktion är "The missing command palette for GitHub".
Tilläggsskärmbilder
Ladda ner Jumpcat-förlängningens CRX-fil
Ladda ner Jumpcat-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | bdjamoegndceikaofgcnfkeekeoiffcn |
| Officiell webbadress | https://chromewebstore.google.com/detail/jumpcat/bdjamoegndceikaofgcnfkeekeoiffcn |
| Beskrivning | The missing command palette for GitHub |
| Filstorlek | 229 KB |
| Antal Installationer | 59 |
| Aktuell Version | 0.20.0 |
| Senast Uppdaterad | 2022-07-28 |
| Publiceringsdatum | 2021-11-02 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | https://jumpcat.dev |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://jumpcat.dev/ |
| Hjälpsida URL | https://github.com/stefanbuck/jumpcat/issues |
| URL till Sekretesspolicy Sidan | https://stefanbuck.com/privacy-policies |
| Stödda Språk | 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"
]
}
]
} | |