Widescreen for GitHub

Toggle the width of GitHub with a click

Что такое Widescreen for GitHub?

Widescreen for GitHub - это расширение Chrome, разработанное Søren Louv-Jansen, и его основная функция - "Toggle the width of GitHub with a click".

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

screenshot
screenshot

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

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

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

                        Often the lines of code on Github are too long to fit within the fixed 920px width. This extension will take full advantage of your screen and show the code in 100% width! It works for all content on Github: PRs, commits, Gists, etc.

It is easy to toggle the width on/off whenever you need it - it even comes with a nice transition.

Bugs: https://github.com/sqren/github-widescreen/issues
Fork: https://github.com/sqren/github-widescreen                    

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

Название Widescreen for GitHub Widescreen for GitHub
ID elikdceclccjilahimjfceoalhdbndan
Официальный URL https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan
Описание Toggle the width of GitHub with a click
Размер файла 1.94 MB
Количество установок 2,604
Текущая Версия 0.7.5
Последнее Обновление 2020-11-10
Дата публикации 2020-07-02
Рейтинг 4.21/5 Всего 24 оценок
Разработчик Søren Louv-Jansen
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sqren/github-widescreen
URL страницы помощи https://github.com/sqren/github-widescreen
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Widescreen for GitHub",
    "short_name": "Widescreen for Github",
    "description": "Toggle the width of GitHub with a click",
    "version": "0.7.5",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        }
    },
    "background": {
        "scripts": [
            "background-scripts.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "content-scripts.js"
            ],
            "css": [
                "content-styles.css"
            ]
        }
    ]
}