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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 URL 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}"
        }
    }
}