Refined Gitlab
Chrome extension that enhances GitLab
Cos'è Refined Gitlab?
Refined Gitlab è un'estensione di Chrome sviluppata da Strajk, e la sua funzione principale è "Chrome extension that enhances GitLab".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Refined Gitlab
Scarica i file di estensione Refined Gitlab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
More info https://github.com/kiwicom/refined-gitlab
Informazioni di Base sull'Estensione
Nome | Refined Gitlab |
ID | pogpjdbfdfnmlegpbhdmlebognmbamko |
URL Ufficiale | https://chromewebstore.google.com/detail/refined-gitlab/pogpjdbfdfnmlegpbhdmlebognmbamko |
Descrizione | Chrome extension that enhances GitLab |
Dimensione del File | 304 KB |
Conteggio Installazioni | 70 |
Versione Corrente | 19.5.22.2040 |
Ultimo Aggiornamento | 2019-05-22 |
Data di Pubblicazione | 2019-05-22 |
Sviluppatore | Strajk |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } } |