Wide GitHub

Change all GitHub repository and gist pages to be full width and dynamically sized.

Что такое Wide GitHub?

Wide GitHub - это расширение Chrome, разработанное xthexder, и его основная функция - "Change all GitHub repository and gist pages to be full width and dynamically sized.".

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

screenshot
screenshot

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

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

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

                        Features:
 - Read long lines of code without scrolling left to right
 - See more documentation at once when using large / high-dpi monitors
 - Easily toggleable for viewing size-dependent docs or wiki pages.                    

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

Название Wide GitHub Wide GitHub
ID kaalofacklcidaampbokdplbklpeldpj
Официальный URL https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj
Описание Change all GitHub repository and gist pages to be full width and dynamically sized.
Размер файла 17.76 KB
Количество установок 7,602
Текущая Версия 1.6.5 MV3
Последнее Обновление 2024-02-07
Дата публикации 2020-06-26
Рейтинг 4.55/5 Всего 66 оценок
Разработчик xthexder
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/xthexder/wide-github
URL страницы помощи https://github.com/xthexder/wide-github/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wide GitHub",
    "description": "Change all GitHub repository and gist pages to be full width and dynamically sized.",
    "version": "1.6.5",
    "version_name": "1.6.5 MV3",
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Toggle Wide GitHub"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "css": [
                "wide-github.css"
            ],
            "js": [
                "wide-github-toggle.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}