GitHub Issues

Browser extension that adds handy tweaks for issues at GitHub.

What is GitHub Issues?

GitHub Issues is a Chrome extension developed by Richard Fridrich, and its main feature is "Browser extension that adds handy tweaks for issues at GitHub.".

Extension Screenshots

screenshot
screenshot

Download GitHub Issues Extension CRX File

Download GitHub Issues extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name GitHub Issues GitHub Issues
ID jlhpeckkndnaidhfihcmlihekebdepgg
Official URL https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg
Description Browser extension that adds handy tweaks for issues at GitHub.
File Size 12.85 KB
Installation Count 17
Current Version 0.3.2
Last Updated 2015-03-13
Publish Date 2015-03-13
Developer Richard Fridrich
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}