Widescreen for GitHub

Toggle the width of GitHub with a click

Qu'est-ce que Widescreen for GitHub ?

Widescreen for GitHub est une extension Chrome développée par Søren Louv-Jansen, et sa fonction principale est "Toggle the width of GitHub with a click".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Widescreen for GitHub

Téléchargez les fichiers d'extension Widescreen for GitHub 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

                        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                    

Informations de Base sur l'Extension

Nom Widescreen for GitHub Widescreen for GitHub
ID elikdceclccjilahimjfceoalhdbndan
URL Officiel https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan
Description Toggle the width of GitHub with a click
Taille du Fichier 1.94 MB
Nombre d'Installations 2,604
Version Actuelle 0.7.5
Dernière Mise à Jour 2020-11-10
Date de Publication 2020-07-02
Évaluation 4.21/5 Total 24 Évaluations
Développeur Søren Louv-Jansen
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sqren/github-widescreen
URL de la Page d'Aide https://github.com/sqren/github-widescreen
Langues Prises en Charge 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"
            ]
        }
    ]
}