Widescreen Browsing

Limit the width of webpages for a better widescreen experience

Widescreen Browsingとは何ですか?

Widescreen BrowsingはForellehによって開発されたChromeの拡張機能で、その主な機能は「Limit the width of webpages for a better widescreen experience」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Widescreen Browsing拡張機能のCRXファイルをダウンロード

Widescreen Browsing拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Widescreen Browsing Widescreen Browsing
ID glpelpaljileehhngbcjpkehidnipifg
公式URL https://chromewebstore.google.com/detail/widescreen-browsing/glpelpaljileehhngbcjpkehidnipifg
説明 Limit the width of webpages for a better widescreen experience
ファイルサイズ 17.29 KB
インストール数 554
現在のバージョン 1.1.0
最終更新日 2023-01-08
公開日 2020-07-02
評価 4.83/5 合計 6 レビュー
開発者 Forelleh
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/nilshellerhoff/widescreen-browsing/
ヘルプページのURL https://github.com/nilshellerhoff/widescreen-browsing/issues
対応言語 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"
    ]
}