GitHub Repository Size

Automatically adds repository size to GitHub's repository summary

GitHub Repository Size क्या है?

GitHub Repository Size https://harshjv.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically adds repository size to GitHub's repository summary"।

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

screenshot
screenshot

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

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

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

                        ## Now supports directory size

## Supports private repositories via Github token

Follow these instructions to enable this extension on private repositories: https://github.com/harshjv/github-repo-size#private-repository

For more details, visit https://github.com/harshjv/github-repo-size                    

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

नाम GitHub Repository Size GitHub Repository Size
ID apnjnioapinblneaedefcnopcjepgkci
आधिकारिक URL https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci
विवरण Automatically adds repository size to GitHub's repository summary
फ़ाइल का आकार 12.9 KB
स्थापना संख्या 20,000
वर्तमान संस्करण 0.6.0
अंतिम अपडेट 2020-06-26
प्रकाशन तिथि 2020-06-26
रेटिंग 4.39/5 कुल 80 रेटिंग्स
डेवलपर https://harshjv.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/harshjv/github-repo-size
सहायता पृष्ठ URL https://github.com/harshjv/github-repo-size/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Repository Size",
    "version": "0.6.0",
    "manifest_version": 2,
    "description": "Automatically adds repository size to GitHub's repository summary",
    "homepage_url": "https:\/\/github.com\/harshjv\/github-repo-size",
    "author": "Harsh Vakharia",
    "icons": {
        "16": "icons\/ghrs16.png",
        "48": "icons\/ghrs48.png",
        "128": "icons\/ghrs128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/ghrs16.png",
            "48": "icons\/ghrs48.png",
            "128": "icons\/ghrs128.png"
        },
        "default_title": "GitHub Repository Size: Click to set\/remove access token"
    }
}