Refined Gitlab

Chrome extension that enhances GitLab

Qu'est-ce que Refined Gitlab ?

Refined Gitlab est une extension Chrome développée par Strajk, et sa fonction principale est "Chrome extension that enhances GitLab".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Refined Gitlab

Téléchargez les fichiers d'extension Refined Gitlab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        More info https://github.com/kiwicom/refined-gitlab                    

Informations de Base sur l'Extension

Nom Refined Gitlab Refined Gitlab
ID pogpjdbfdfnmlegpbhdmlebognmbamko
URL Officiel https://chromewebstore.google.com/detail/refined-gitlab/pogpjdbfdfnmlegpbhdmlebognmbamko
Description Chrome extension that enhances GitLab
Taille du Fichier 304 KB
Nombre d'Installations 70
Version Actuelle 19.5.22.2040
Dernière Mise à Jour 2019-05-22
Date de Publication 2019-05-22
Développeur Strajk
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}