Widescreen for GitHub

Toggle the width of GitHub with a click

What is Widescreen for GitHub?

Widescreen for GitHub is a Chrome extension developed by Søren Louv-Jansen, and its main feature is "Toggle the width of GitHub with a click".

Extension Screenshots

screenshot
screenshot

Download Widescreen for GitHub Extension CRX File

Download Widescreen for GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Widescreen for GitHub Widescreen for GitHub
ID elikdceclccjilahimjfceoalhdbndan
Official URL https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan
Description Toggle the width of GitHub with a click
File Size 1.94 MB
Installation Count 2,604
Current Version 0.7.5
Last Updated 2020-11-10
Publish Date 2020-07-02
Rating 4.21/5 Total 24 Ratings
Developer Søren Louv-Jansen
Email [email protected]
Payment Type free
Extension Website https://github.com/sqren/github-widescreen
Help Page URL https://github.com/sqren/github-widescreen
Supported Languages 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"
            ]
        }
    ]
}