GitLab Details Sidebar
Adding a details view to the sidebar of GitLab boards
GitLab Details Sidebar क्या है?
GitLab Details Sidebar Potato द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adding a details view to the sidebar of GitLab boards"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitLab Details Sidebar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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}" } } } |