GitHub Issues
Browser extension that adds handy tweaks for issues at GitHub.
Co to jest GitHub Issues?
GitHub Issues to rozszerzenie Chrome opracowane przez Richard Fridrich, a jego główną funkcją jest „Browser extension that adds handy tweaks for issues at GitHub.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Issues
Pobierz pliki rozszerzeń GitHub Issues w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Browser extension that adds a few handy tweaks to issues at GitHub:
- Hide label changes.
- Hide reassignments.
- Hide milestone changes.
- Hide emojis.
- Hide "+1" comments and display them as a counter/summary.
Source code for this extension is available at:
https://github.com/fczbkk/github-issues-extension Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jlhpeckkndnaidhfihcmlihekebdepgg |
| Oficjalny URL | https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg |
| Opis | Browser extension that adds handy tweaks for issues at GitHub. |
| Rozmiar pliku | 12.85 KB |
| Liczba instalacji | 17 |
| Aktualna Wersja | 0.3.2 |
| Ostatnia Aktualizacja | 2015-03-13 |
| Data Publikacji | 2015-03-13 |
| Deweloper | Richard Fridrich |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Issues",
"version": "0.3.2",
"manifest_version": 2,
"description": "Browser extension that adds handy tweaks for issues at GitHub.",
"icons": {
"16": "img\/icon-16.png",
"48": "img\/icon-48.png",
"128": "img\/icon-128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.github.com\/*\/issues\/*",
"*:\/\/*.github.com\/*\/pull\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"options_page": "options.html",
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"permissions": [
"storage"
]
} | |