GitHub Issues Instant Solutions

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

Vad är GitHub Issues Instant Solutions?

GitHub Issues Instant Solutions är en Chrome-tillägg utvecklad av Martin Galovic, och dess huvudfunktion är "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner GitHub Issues Instant Solutions-förlängningens CRX-fil

Ladda ner GitHub Issues Instant Solutions-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn GitHub Issues Instant Solutions GitHub Issues Instant Solutions
ID efdnmggekpecdpgllnnlehdobkealhem
Officiell webbadress https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem
Beskrivning Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Filstorlek 227 KB
Antal Installationer 67
Aktuell Version 1.0.5
Senast Uppdaterad 2020-02-29
Publiceringsdatum 2020-02-29
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Martin Galovic
Betalningssätt free
Tilläggswebbplats https://issues.martingalovic.com
Stödda Språk 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"
    }
}