Github-Editors

Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.

Github-Editors란 무엇입니까?

Github-Editors은(는) tclaude94에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer."입니다.

확장 프로그램 스크린샷

screenshot

Github-Editors 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension improves your user experience on GitHub by adding several buttons like:
- VSCode cloning
- Jetbrains' Suite cloning
- Open the repo on GitHub1s
- Open the repo on CodeSandbox

-- Report an issue or submit an improvement
You can report an issue or submit an improvement (like adding support for a new editor) on Github

Repository can be found here : https://github.com/tclaude94/VSCodeGithub                    

확장 프로그램 기본 정보

이름 Github-Editors Github-Editors
ID djdgcpbdkcipjeaiipndkklnfgfmegna
공식 URL https://chromewebstore.google.com/detail/github-editors/djdgcpbdkcipjeaiipndkklnfgfmegna
설명 Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.
파일 크기 341 KB
설치 횟수 66
현재 버전 0.2.0
최근 업데이트 2021-02-15
출시 날짜 2021-02-15
평점 5.00/5 총 2 개의 평점
개발자 tclaude94
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "img\/logo.png",
        "default_title": "Github-Editors",
        "default_popup": ".\/options\/options.html"
    },
    "content_scripts": [
        {
            "js": [
                "constants.js",
                "main.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "description": "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.",
    "manifest_version": 2,
    "name": "Github-Editors",
    "short_name": "GHE",
    "version": "0.2.0",
    "web_accessible_resources": [
        "img\/*",
        "img\/icons\/*"
    ],
    "icons": {
        "128": "img\/logo.png",
        "16": "img\/logo.png",
        "48": "img\/logo.png"
    },
    "options_ui": {
        "page": "\/options\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}