Widescreen Browsing

Limit the width of webpages for a better widescreen experience

Apa itu Widescreen Browsing?

Widescreen Browsing adalah ekstensi Chrome yang dikembangkan oleh Forelleh, dan fitur utamanya adalah "Limit the width of webpages for a better widescreen experience".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Widescreen Browsing

Unduh file ekstensi Widescreen Browsing dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Widescreen Browsing Widescreen Browsing
ID glpelpaljileehhngbcjpkehidnipifg
URL Resmi https://chromewebstore.google.com/detail/widescreen-browsing/glpelpaljileehhngbcjpkehidnipifg
Deskripsi Limit the width of webpages for a better widescreen experience
Ukuran File 17.29 KB
Jumlah Instalasi 554
Versi Saat Ini 1.1.0
Terakhir Diperbarui 2023-01-08
Tanggal Publikasi 2020-07-02
Penilaian 4.83/5 Total 6 Penilaian
Pengembang Forelleh
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/nilshellerhoff/widescreen-browsing/
URL Halaman Bantuan https://github.com/nilshellerhoff/widescreen-browsing/issues
Bahasa yang Didukung 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"
    ]
}