GitHub with a cape

Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!

GitHub with a cape क्या है?

GitHub with a cape NicoSantangelo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!"।

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

screenshot

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

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

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

                        All options can be turn on and off, it includes:

- Notifications modal
- Resizeable splitted diffs
- Add collapsable diffs
- Show All / Hide All buttons
- Show the current diff name on the sticky header
- Add collapsable commits
- Toggle contributions by clicking the added/deleted stats
- Show outdated diff comments by default
- Highlights the outdated diff icon (the X) on PRs                    

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

नाम GitHub with a cape GitHub with a cape
ID ohkgmmldhbadfleajjafdeahmakbbcpi
आधिकारिक URL https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi
विवरण Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
फ़ाइल का आकार 31.47 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.4.4
अंतिम अपडेट 2017-02-12
प्रकाशन तिथि 2017-02-11
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर NicoSantangelo
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github-with-a-cape.nicosantangelo.com/
सहायता पृष्ठ URL https://github.com/NicoSantangelo/github-with-a-cape/issues
गोपनीयता नीति पृष्ठ URL https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub with a cape",
    "description": "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!",
    "short_name": "Github with a cape",
    "version": "1.4.4",
    "icons": {
        "18": "icons\/18.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.github.com\/*",
                "http:\/\/www.github.com\/*",
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "configuration.js",
                "notifications.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/options.html",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "notifications.html"
    ]
}