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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GitHub Issues Instant Solutions 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}