GitHub Issues

Browser extension that adds handy tweaks for issues at GitHub.

GitHub Issues क्या है?

GitHub Issues Richard Fridrich द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser extension that adds handy tweaks for issues at GitHub."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GitHub Issues एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम GitHub Issues GitHub Issues
ID jlhpeckkndnaidhfihcmlihekebdepgg
आधिकारिक URL https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg
विवरण Browser extension that adds handy tweaks for issues at GitHub.
फ़ाइल का आकार 12.85 KB
स्थापना संख्या 17
वर्तमान संस्करण 0.3.2
अंतिम अपडेट 2015-03-13
प्रकाशन तिथि 2015-03-13
डेवलपर Richard Fridrich
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}