Github compare tags

Adds tags to the compare page of Github.

Github compare tags क्या है?

Github compare tags marpo60 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds tags to the compare page of Github."।

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

screenshot

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

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

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

                        Add into the dropdown of Github compare page the tags of the repositories.                    

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

नाम Github compare tags Github compare tags
ID pjkolicadkdcfgjjoopdpleenckeajkk
आधिकारिक URL https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk
विवरण Adds tags to the compare page of Github.
फ़ाइल का आकार 8.43 KB
स्थापना संख्या 62
वर्तमान संस्करण 0.0.6
अंतिम अपडेट 2019-06-01
प्रकाशन तिथि 2019-06-01
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर marpo60
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/marpo60/github-compare-tags
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github compare tags",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Adds tags to the compare page of Github.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "scripts": [
            "src\/hot-reload.js"
        ]
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}