GitLab Details Sidebar

Adding a details view to the sidebar of GitLab boards

什麼是GitLab Details Sidebar?

GitLab Details Sidebar是由Potato開發的Chrome擴展程式,該擴展的主要功能是“Adding a details view to the sidebar of GitLab boards”。

擴展截圖

screenshot

下載GitLab Details Sidebar擴展crx文件

下載GitLab Details Sidebar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Chrome extension for GitLab to enhance its functionality. Currently this includes the addition of an "issue details" sidebar that appears when an item within a project board is clicked.

Now updated to work with GitLab v14+

For using the GitLab Details Sidebar on a custom domain for GitLab:
* Navigate to your custom GitLab instance
* Right click on the extension icon
* Select "Enable GitLab Details Sidebar on this domain"
* Accept the permissions dialog
* Click "Ok" to reload the page                    

擴展基本資訊

名稱 GitLab Details Sidebar GitLab Details Sidebar
ID pmgjbjfdmgljhnnhhoccjgpabhgefnki
官方網址 https://chromewebstore.google.com/detail/gitlab-details-sidebar/pmgjbjfdmgljhnnhhoccjgpabhgefnki
簡介 Adding a details view to the sidebar of GitLab boards
檔案大小 20.98 KB
安裝次數 731
目前版本 0.6.0
更新時間 2021-07-20
上架時間 2020-06-12
評分 5.00/5 共 9 次評分
開發者 Potato
電子郵箱 [email protected]
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitLab Details Sidebar",
    "description": "Adding a details view to the sidebar of GitLab boards",
    "version": "0.6.0",
    "manifest_version": 2,
    "icons": {
        "16": "[email protected]",
        "32": "[email protected]",
        "48": "[email protected]"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gitlab.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false,
            "js": [
                "board-enhancement.js"
            ],
            "css": [
                "board-enhancement.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/gitlab.com\/*",
        "contextMenus",
        "activeTab",
        "webRequest",
        "webRequestBlocking"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{4df68d77-cf6d-4ac4-829d-9ff46fedd628}"
        }
    }
}