GitLab Print

Adjust layout of GitLab pages for printing.

Что такое GitLab Print?

GitLab Print - это расширение Chrome, разработанное sika524, и его основная функция - "Adjust layout of GitLab pages for printing.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения GitLab Print

Скачайте файлы расширений GitLab Print в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Adjust layout of GitLab pages for printing.
There are redundant components and space
when we print GitLab pages (markdown page, issues, merge requests, etc.).
With this extension, you can remove them from the contents.

This extension is developed as OSS:
https://github.com/ksoichiro/gitlab-print                    

Основная информация о расширении

Название GitLab Print GitLab Print
ID ooopojgjhkkklgmdahnahcneikejmllm
Официальный URL https://chromewebstore.google.com/detail/gitlab-print/ooopojgjhkkklgmdahnahcneikejmllm
Описание Adjust layout of GitLab pages for printing.
Размер файла 41.55 KB
Количество установок 229
Текущая Версия 0.1.0
Последнее Обновление 2016-03-29
Дата публикации 2016-03-28
Рейтинг 1.00/5 Всего 1 оценок
Разработчик sika524
Тип оплаты free
Поддерживаемые языки en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitLab Print",
    "version": "0.1.0",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/ksoichiro\/gitlab-print",
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        "src\/style.css",
        "src\/toggle.js"
    ]
}