GitHub comment navigator
Jump to previous/next GitHub comments with j/k
Was ist GitHub comment navigator?
GitHub comment navigator ist eine Chrome-Erweiterung, die von Shrey entwickelt wurde, und ihr Hauptmerkmal ist "Jump to previous/next GitHub comments with j/k".
Erweiterungsscreenshots
GitHub comment navigator-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub comment navigator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Adds keyboard shortcuts for navigating and replying to comments:
- J / K to move to previous / next comment
- R to reply to the focused comment thread
- L to like the focused comment Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lofhbhadfnodfbppjdgkoadccfilaeoj |
| Offizielle URL | https://chromewebstore.google.com/detail/github-comment-navigator/lofhbhadfnodfbppjdgkoadccfilaeoj |
| Beschreibung | Jump to previous/next GitHub comments with j/k |
| Dateigröße | 10.43 KB |
| Installationsanzahl | 30 |
| Aktuelle Version | 0.0.5 |
| Letztes Update | 2018-10-16 |
| Veröffentlichungsdatum | 2018-10-16 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Shrey |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/banga/github-extension |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub comment navigator",
"version": "0.0.5",
"manifest_version": 2,
"description": "Jump to previous\/next GitHub comments with j\/k",
"homepage_url": "https:\/\/github.com\/banga\/github-extension",
"icons": {
"256": "icons\/icon_256.png"
},
"permissions": [
"https:\/\/github.com\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/main.js"
],
"css": [
"src\/main.css"
]
}
]
} | |