GitHub Issues Instant Solutions

Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.

GitHub Issues Instant Solutions क्या है?

GitHub Issues Instant Solutions Martin Galovic द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly."।

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

screenshot
screenshot

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

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

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

                        Find Github Issue solution instantly — just click "Jump to the solution" button                    

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

नाम GitHub Issues Instant Solutions GitHub Issues Instant Solutions
ID efdnmggekpecdpgllnnlehdobkealhem
आधिकारिक URL https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem
विवरण Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
फ़ाइल का आकार 227 KB
स्थापना संख्या 67
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2020-02-29
प्रकाशन तिथि 2020-02-29
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Martin Galovic
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://issues.martingalovic.com
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Issues Instant Solutions",
    "version": "1.0.5",
    "description": "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.",
    "icons": {
        "16": "public\/icons\/icon_16.png",
        "48": "public\/icons\/icon_48.png",
        "128": "public\/icons\/icon_128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "public\/background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/www.github.com\/*",
                "http:\/\/github.com\/*",
                "http:\/\/www.github.com\/*"
            ],
            "css": [
                "public\/github_content_styles.css"
            ],
            "js": [
                "public\/underscore.min.js",
                "public\/jquery.min.js",
                "public\/github_content_script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/www.github.com\/*",
        "http:\/\/github.com\/*",
        "http:\/\/www.github.com\/*"
    ],
    "browser_action": {
        "default_icon": "public\/icons\/icon_16.png",
        "default_popup": "public\/html\/popup.html"
    }
}