GitHub Review Filters

Chrome extension that creates a filters menu bar on GitHub so that you can show/hide file types for pull requests.

GitHub Review Filters क्या है?

GitHub Review Filters psyrendust द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that creates a filters menu bar on GitHub so that you can show/hide file types for pull requests."।

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

screenshot

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

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

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

                        If you manage pull requests that have a lot of files and you only need to review certain file types, then this is the extension for you. A dynamic toolbar will appear underneath GitHub's main navigation bar which will give you buttons to show or hide individual file types or show/hide all file types. Each file type filter button also shows the number of times that file type is present within the pull request. When on the /pulls/ page the navigation bar will allow you to filter the requesters of the available pull requests on the page.                    

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

नाम GitHub Review Filters GitHub Review Filters
ID cdfbkmackojgkcohdfikiablcecbcdfa
आधिकारिक URL https://chromewebstore.google.com/detail/github-review-filters/cdfbkmackojgkcohdfikiablcecbcdfa
विवरण Chrome extension that creates a filters menu bar on GitHub so that you can show/hide file types for pull requests.
फ़ाइल का आकार 124 KB
स्थापना संख्या 27
वर्तमान संस्करण 0.1.4
अंतिम अपडेट 2015-06-18
प्रकाशन तिथि 2015-06-18
डेवलपर psyrendust
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/psyrendust/github-review-filters
समर्थित भाषाएँ id,ms,de,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,bg,ru,uk,iw,hi,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "name": "__MSG_appName__",
    "short_name": "__MSG_appName__",
    "version": "0.1.4",
    "author": "psyrendust",
    "description": "__MSG_appDesc__",
    "homepage_url": "https:\/\/github.com\/psyrendust\/github-review-filters",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en_US",
    "manifest_version": 2,
    "icons": {
        "128": "icons\/icon-128.png",
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png"
    },
    "content_scripts": [
        {
            "css": [
                "content\/inject.css"
            ],
            "js": [
                "content\/jquery-2.1.1.min.js",
                "content\/inject.js"
            ],
            "matches": [
                "https:\/\/*.com\/*\/*\/issues*",
                "https:\/\/*.org\/*\/*\/issues*",
                "https:\/\/*.us\/*\/*\/issues*",
                "https:\/\/*.com\/*\/*\/pull*",
                "https:\/\/*.org\/*\/*\/pull*",
                "https:\/\/*.us\/*\/*\/pull*"
            ],
            "includes_glob": [
                "github*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "content\/jquery-2.1.1.min.map"
    ],
    "permissions": [
        "https:\/\/*.com\/*\/*\/issues*",
        "https:\/\/*.org\/*\/*\/issues*",
        "https:\/\/*.us\/*\/*\/issues*",
        "https:\/\/*.com\/*\/*\/pull*",
        "https:\/\/*.org\/*\/*\/pull*",
        "https:\/\/*.us\/*\/*\/pull*"
    ]
}