Widescreen Browsing

Limit the width of webpages for a better widescreen experience

What is Widescreen Browsing?

Widescreen Browsing is a Chrome extension developed by Forelleh, and its main feature is "Limit the width of webpages for a better widescreen experience".

Extension Screenshots

screenshot
screenshot
screenshot

Download Widescreen Browsing Extension CRX File

Download Widescreen Browsing 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

                        Ever felt like some pages just don't really work well on widescreens? Now you can limit the width of webpages with this simple extension. Just save your preferred width on a per domain basis! 

Sourcecode available at https://github.com/nilshellerhoff/widescreen-browsing/

Note: This extension is still in development and might not work well with every website. Feel free to report any issues at https://github.com/nilshellerhoff/widescreen-browsing/issues                    

Extension Basic Information

Name Widescreen Browsing Widescreen Browsing
ID glpelpaljileehhngbcjpkehidnipifg
Official URL https://chromewebstore.google.com/detail/widescreen-browsing/glpelpaljileehhngbcjpkehidnipifg
Description Limit the width of webpages for a better widescreen experience
File Size 17.29 KB
Installation Count 554
Current Version 1.1.0
Last Updated 2023-01-08
Publish Date 2020-07-02
Rating 4.83/5 Total 6 Ratings
Developer Forelleh
Email [email protected]
Payment Type free
Extension Website https://github.com/nilshellerhoff/widescreen-browsing/
Help Page URL https://github.com/nilshellerhoff/widescreen-browsing/issues
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Widescreen Browsing",
    "description": "Limit the width of webpages for a better widescreen experience",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "version": "1.1.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "rules.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; img-src chrome:\/\/favicon http:\/\/* https:\/\/* 'self' data:;",
    "browser_action": {
        "default_icon": "icon-48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}