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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jetbrains.com และคุณลักษณะหลักของมันคือ "Clone and open projects from GitHub, GitLab, and Bitbucket in JetBrains IDEs right from your browser"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JetBrains Toolbox Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*"
    ]
}