Open in GitHub1s

Add a new navigation option to open GitHub repositories in GitHub1s.

Open in GitHub1s란 무엇입니까?

Open in GitHub1s은(는) zacharysmith에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a new navigation option to open GitHub repositories in GitHub1s."입니다.

확장 프로그램 스크린샷

screenshot

Open in GitHub1s 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        GitHub1s is a web-app for viewing GitHub repository files online, using a web-compiled version of VSCode. This extension introduces a new UI button to the GitHub repository file navigation bar, enabling users to easily open the repository inside the GitHub1s website.                    

확장 프로그램 기본 정보

이름 Open in GitHub1s Open in GitHub1s
ID iijaagbkdohcopmmohlgfkcloefoeaoj
공식 URL https://chromewebstore.google.com/detail/open-in-github1s/iijaagbkdohcopmmohlgfkcloefoeaoj
설명 Add a new navigation option to open GitHub repositories in GitHub1s.
파일 크기 127 KB
설치 횟수 1,601
현재 버전 1.5
최근 업데이트 2022-05-10
출시 날짜 2021-08-18
개발자 zacharysmith
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Cutwell/github1s-chrome-extension
도움말 페이지 URL https://github.com/Cutwell/github1s-chrome-extension
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in GitHub1s",
    "version": "1.5",
    "description": "Add a new navigation option to open GitHub repositories in GitHub1s.",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "data\/img\/icon48.png",
            "128": "data\/img\/icon128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "48": "data\/img\/icon48.png",
        "128": "data\/img\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "data\/js\/content.js"
            ],
            "css": [
                "data\/css\/extension.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}