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文件

下载JetBrains Toolbox Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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:\/\/*\/*"
    ]
}