Refined Gitlab
Chrome extension that enhances GitLab
Refined Gitlabคืออะไร?
Refined Gitlab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Strajk และคุณลักษณะหลักของมันคือ "Chrome extension that enhances GitLab"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Refined Gitlab
ดาวน์โหลดไฟล์ส่วนขยาย Refined Gitlab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
More info https://github.com/kiwicom/refined-gitlab
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Refined Gitlab |
ID | pogpjdbfdfnmlegpbhdmlebognmbamko |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/refined-gitlab/pogpjdbfdfnmlegpbhdmlebognmbamko |
คำอธิบาย | Chrome extension that enhances GitLab |
ขนาดไฟล์ | 304 KB |
จำนวนการติดตั้ง | 70 |
เวอร์ชันปัจจุบัน | 19.5.22.2040 |
อัปเดตครั้งล่าสุด | 2019-05-22 |
วันที่เผยแพร่ | 2019-05-22 |
ผู้พัฒนา | Strajk |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } } |