Widescreen for GitHub

Toggle the width of GitHub with a click

Co to jest Widescreen for GitHub?

Widescreen for GitHub to rozszerzenie Chrome opracowane przez Søren Louv-Jansen, a jego główną funkcją jest „Toggle the width of GitHub with a click”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Widescreen for GitHub

Pobierz pliki rozszerzeń Widescreen for GitHub w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Widescreen for GitHub Widescreen for GitHub
ID elikdceclccjilahimjfceoalhdbndan
Oficjalny URL https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan
Opis Toggle the width of GitHub with a click
Rozmiar pliku 1.94 MB
Liczba instalacji 2,604
Aktualna Wersja 0.7.5
Ostatnia Aktualizacja 2020-11-10
Data Publikacji 2020-07-02
Ocena 4.21/5 Łącznie 24 Oceny
Deweloper Søren Louv-Jansen
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sqren/github-widescreen
Adres URL Strony Pomocy https://github.com/sqren/github-widescreen
Obsługiwane Języki 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"
            ]
        }
    ]
}