Widescreen Browsing

Limit the width of webpages for a better widescreen experience

Qu'est-ce que Widescreen Browsing ?

Widescreen Browsing est une extension Chrome développée par Forelleh, et sa fonction principale est "Limit the width of webpages for a better widescreen experience".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Widescreen Browsing

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

                        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                    

Informations de Base sur l'Extension

Nom Widescreen Browsing Widescreen Browsing
ID glpelpaljileehhngbcjpkehidnipifg
URL Officiel https://chromewebstore.google.com/detail/widescreen-browsing/glpelpaljileehhngbcjpkehidnipifg
Description Limit the width of webpages for a better widescreen experience
Taille du Fichier 17.29 KB
Nombre d'Installations 554
Version Actuelle 1.1.0
Dernière Mise à Jour 2023-01-08
Date de Publication 2020-07-02
Évaluation 4.83/5 Total 6 Évaluations
Développeur Forelleh
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/nilshellerhoff/widescreen-browsing/
URL de la Page d'Aide https://github.com/nilshellerhoff/widescreen-browsing/issues
Langues Prises en Charge 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"
    ]
}