Refined Gitlab
Chrome extension that enhances GitLab
什麼是Refined Gitlab?
Refined Gitlab是由Strajk開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension that enhances GitLab”。
擴展截圖
下載Refined Gitlab擴展crx文件
下載Refined Gitlab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
More info https://github.com/kiwicom/refined-gitlab 擴展基本資訊
| 名稱 | |
| ID | pogpjdbfdfnmlegpbhdmlebognmbamko |
| 官方網址 | 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"
]
}
} | |