Open Github/Bitbucket in editor

Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!

Open Github/Bitbucket in editor란 무엇입니까?

Open Github/Bitbucket in editor은(는) a7madgamal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!"입니다.

확장 프로그램 스크린샷

screenshot

Open Github/Bitbucket in editor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Click on diff line numbers in Github or Bitbucket PRs to open the exact file and line in your favorite editor 🤓

open-source, free and super lightweight!


Issues? feature requests?  >> https://github.com/a7madgamal/open_github_in_editor

🦊 also available for Firefox 
https://addons.mozilla.org/en-US/firefox/addon/open-github-in-editor/                    

확장 프로그램 기본 정보

이름 Open Github/Bitbucket in editor Open Github/Bitbucket in editor
ID epklehdbjbicoeeebecaeeeceflgpmga
공식 URL https://chromewebstore.google.com/detail/open-githubbitbucket-in-e/epklehdbjbicoeeebecaeeeceflgpmga
설명 Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!
파일 크기 50.72 KB
설치 횟수 161
현재 버전 1.2.1
최근 업데이트 2022-11-22
출시 날짜 2019-12-12
개발자 a7madgamal
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/a7madgamal/open_github_in_editor
도움말 페이지 URL https://github.com/a7madgamal/open_github_in_editor
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Github\/Bitbucket in editor",
    "version": "1.2.1",
    "description": "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/bitbucket.com\/*",
                "https:\/\/bitbucket.org\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "32": "icons\/32.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "65.0"
        }
    }
}