Refined Gitlab
Chrome extension that enhances GitLab
Refined Gitlab là gì?
Refined Gitlab là một tiện ích mở rộng Chrome được phát triển bởi Strajk, và tính năng chính của nó là "Chrome extension that enhances GitLab".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Refined Gitlab
Tải xuống các tệp mở rộng Refined Gitlab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
More info https://github.com/kiwicom/refined-gitlab
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Refined Gitlab |
ID | pogpjdbfdfnmlegpbhdmlebognmbamko |
URL Chính Thức | https://chromewebstore.google.com/detail/refined-gitlab/pogpjdbfdfnmlegpbhdmlebognmbamko |
Mô tả | Chrome extension that enhances GitLab |
Kích Thước Tệp | 304 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 19.5.22.2040 |
Cập Nhật Lần Cuối | 2019-05-22 |
Ngày Phát Hành | 2019-05-22 |
Nhà Phát Triển | Strajk |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Refined Gitlab", "description": "Chrome extension that enhances GitLab", "version": "19.5.22.2040", "homepage_url": "https:\/\/github.com\/kiwicom\/refined-gitlab", "page_action": { "default_icon": "icon.png", "default_title": "Gitlab extension" }, "permissions": [ "storage", "contextMenus", "unlimitedStorage", "activeTab" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "options_ui": { "page": "options.html", "chrome_style": true }, "web_accessible_resources": [ "agent.js" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/gitlab.com\/*", "https:\/\/gitlab.skypicker.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "background.js" ] } } |