FitWidth

Adds an additional zoom mode for the default image view.

FitWidthคืออะไร?

FitWidth เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shylux และคุณลักษณะหลักของมันคือ "Adds an additional zoom mode for the default image view."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย FitWidth ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The Google Chrome image view has two different zoom modes. This extension adds a third one.

Fit height or width: Fits the image to the window size. 

Original size: Displays the image in the original size. Ignores the window size.

-New- Fit width: Fits the image to the window width. If the image is too  high a scollbar is used.

This new mode is perfect to view very thin and high images like Screencaps.

Source: https://github.com/shylux/FitWidth                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ FitWidth FitWidth
ID pggbiaffhagpmifmogkfibinbbgacled
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fitwidth/pggbiaffhagpmifmogkfibinbbgacled
คำอธิบาย Adds an additional zoom mode for the default image view.
ขนาดไฟล์ 37.4 KB
จำนวนการติดตั้ง 490
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2021-04-21
วันที่เผยแพร่ 2019-09-21
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา shylux
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/shylux/FitWidth
URL หน้าช่วยเหลือ https://github.com/shylux/FitWidth/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FitWidth",
    "version": "1.1",
    "description": "Adds an additional zoom mode for the default image view.",
    "icons": {
        "128": "zoomplus.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "maximg.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}