GitHub Issues
Browser extension that adds handy tweaks for issues at GitHub.
Hvad er GitHub Issues?
GitHub Issues er en Chrome-udvidelse udviklet af Richard Fridrich, og dens hovedfunktion er "Browser extension that adds handy tweaks for issues at GitHub.".
Udvidelsesskærmbilleder
Download GitHub Issues-udvidelses-CRX-fil
Download GitHub Issues-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
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | jlhpeckkndnaidhfihcmlihekebdepgg |
| Officiel URL | https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg |
| Beskrivelse | Browser extension that adds handy tweaks for issues at GitHub. |
| Filstørrelse | 12.85 KB |
| Antal Installationer | 17 |
| Nuværende Version | 0.3.2 |
| Senest Opdateret | 2015-03-13 |
| Udgivelsesdato | 2015-03-13 |
| Udvikler | Richard Fridrich |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
} | |