JetBrains Toolbox Extension

Clone and open projects from GitHub, GitLab, and Bitbucket in JetBrains IDEs right from your browser

JetBrains Toolbox Extension란 무엇입니까?

JetBrains Toolbox Extension은(는) https://jetbrains.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Clone and open projects from GitHub, GitLab, and Bitbucket in JetBrains IDEs right from your browser"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

JetBrains Toolbox Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension adds buttons that allow you to clone and open projects from GitHub, GitLab, and Bitbucket in IntelliJ-based IDEs. 
Note: The Toolbox App must be installed on your computer to make the extension work. Download the Toolbox App from https://www.jetbrains.com/toolbox-app.

To open the projects from self-hosted GitHub, GitLab, and Bitbucket instances, make sure to enable the extension for your website by ticking “Enable on this domain” in the extension settings menu.

If you encounter any problem using the extension, please create an issue request at our tracker: https://youtrack.jetbrains.com/issues/TBX

Would you like to collaborate on the extension? Because you can! It's an open-source project.  Here is the repository address: https://github.com/JetBrains/toolbox-browser-extension                    

확장 프로그램 기본 정보

이름 JetBrains Toolbox Extension JetBrains Toolbox Extension
ID offnedcbhjldheanlbojaefbfbllddna
공식 URL https://chromewebstore.google.com/detail/jetbrains-toolbox-extensi/offnedcbhjldheanlbojaefbfbllddna
설명 Clone and open projects from GitHub, GitLab, and Bitbucket in JetBrains IDEs right from your browser
파일 크기 200 KB
설치 횟수 130,017
현재 버전 1.28.0.14810
최근 업데이트 2023-04-21
출시 날짜 2020-07-01
평점 3.88/5 총 115 개의 평점
개발자 https://jetbrains.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.jetbrains.com/toolbox-app/
도움말 페이지 URL https://youtrack.jetbrains.com/issues/TBX
개인정보 보호 정책 페이지 URL https://www.jetbrains.com/legal/docs/privacy/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JetBrains Toolbox Extension",
    "short_name": "Toolbox",
    "description": "Clone and open projects from GitHub, GitLab, and Bitbucket in JetBrains IDEs right from your browser",
    "version": "1.28.0.14810",
    "icons": {
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-disabled-128.png",
        "default_title": "JetBrains Toolbox Extension",
        "default_popup": "jetbrains-toolbox-disabled-popup.html"
    },
    "background": {
        "scripts": [
            "jetbrains-toolbox-background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "jetbrains-toolbox-github-public.js"
            ]
        },
        {
            "matches": [
                "https:\/\/gitlab.com\/*"
            ],
            "js": [
                "jetbrains-toolbox-gitlab-public.js"
            ]
        },
        {
            "matches": [
                "https:\/\/bitbucket.org\/*"
            ],
            "js": [
                "jetbrains-toolbox-bitbucket-public.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "*.svg"
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "https:\/\/github.com\/*",
        "https:\/\/api.github.com\/*",
        "https:\/\/gitlab.com\/*",
        "https:\/\/bitbucket.org\/*",
        "https:\/\/api.bitbucket.org\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}