Widescreen Browsing

Limit the width of webpages for a better widescreen experience

O que é Widescreen Browsing?

Widescreen Browsing é uma extensão do Chrome desenvolvida por Forelleh, e sua principal característica é "Limit the width of webpages for a better widescreen experience".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Widescreen Browsing

Baixe arquivos de extensão Widescreen Browsing no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Widescreen Browsing Widescreen Browsing
ID glpelpaljileehhngbcjpkehidnipifg
URL Oficial https://chromewebstore.google.com/detail/widescreen-browsing/glpelpaljileehhngbcjpkehidnipifg
Descrição Limit the width of webpages for a better widescreen experience
Tamanho do Arquivo 17.29 KB
Contagem de Instalações 554
Versão Atual 1.1.0
Última Atualização 2023-01-08
Data de Publicação 2020-07-02
Classificação 4.83/5 Total de 6 Avaliações
Desenvolvedor Forelleh
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/nilshellerhoff/widescreen-browsing/
URL da Página de Ajuda https://github.com/nilshellerhoff/widescreen-browsing/issues
Idiomas Suportados 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"
    ]
}