GitHub Issues

Browser extension that adds handy tweaks for issues at GitHub.

Wat is GitHub Issues?

GitHub Issues is een Chrome-extensie ontwikkeld door Richard Fridrich, en de belangrijkste functie is "Browser extension that adds handy tweaks for issues at GitHub.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie GitHub Issues

Download GitHub Issues-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam GitHub Issues GitHub Issues
ID jlhpeckkndnaidhfihcmlihekebdepgg
Officiële URL https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg
Beschrijving Browser extension that adds handy tweaks for issues at GitHub.
Bestandsgrootte 12.85 KB
Aantal Installaties 17
Huidige Versie 0.3.2
Laatst Bijgewerkt 2015-03-13
Publicatiedatum 2015-03-13
Ontwikkelaar Richard Fridrich
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}