Widescreen Browsing

Limit the width of webpages for a better widescreen experience

Widescreen Browsingคืออะไร?

Widescreen Browsing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Forelleh และคุณลักษณะหลักของมันคือ "Limit the width of webpages for a better widescreen experience"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Widescreen Browsing

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}