Window Zoom

Zoom all tabs on the window at once! Separate windows can have separate zoom levels

Window Zoomคืออะไร?

Window Zoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://triplebits.com และคุณลักษณะหลักของมันคือ "Zoom all tabs on the window at once! Separate windows can have separate zoom levels"

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

screenshot

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

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

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

                        If you need to zoom all the tabs on a specific browser window, this is the extension for you.

The reason I created this extension is, I use multiple screens with different resolutions. Fractional Settings were using more GPU and causing other issues on my OS (using Linux).

I started zooming the windows I have on a specific screen. It was effecting other windows & tabs and adjusting this tab per tab was just wasting time.

I decided to create an extension where I can just set a zoom settings for a specific window and all the tabs within that window would be zoomed accordingly.

* If you move a tab from zoomed window, it will reset itself back to 100% zoom.
* If you add a tab from another, non-zoomed window to zoomed window, it will zoom automatically.
* Zoomed window & its tabs are not per-origin. Meaning if you visit the same site on another window, it will have your default zoom settings (usually 100% / no - zoom).                    

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

ชื่อ Window Zoom Window Zoom
ID phpinlgpecdaelknbfaenbljidcbhgbe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/window-zoom/phpinlgpecdaelknbfaenbljidcbhgbe
คำอธิบาย Zoom all tabs on the window at once! Separate windows can have separate zoom levels
ขนาดไฟล์ 16.38 KB
จำนวนการติดตั้ง 10
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2021-09-23
วันที่เผยแพร่ 2021-09-14
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://triplebits.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://triplebits.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Window Zoom",
    "author": "Ilg\u0131t Y\u0131ld\u0131r\u0131m",
    "homepage_url": "https:\/\/triplebits.com",
    "description": "Zoom all tabs on the window at once! Separate windows can have separate zoom levels",
    "version": "1.1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/assets\/zoom-16.png",
            "32": ".\/assets\/zoom-32.png",
            "48": ".\/assets\/zoom-48.png",
            "64": ".\/assets\/zoom-64.png",
            "128": ".\/assets\/zoom-128.png"
        }
    },
    "icons": {
        "16": ".\/assets\/zoom-16.png",
        "32": ".\/assets\/zoom-32.png",
        "48": ".\/assets\/zoom-48.png",
        "64": ".\/assets\/zoom-64.png",
        "128": ".\/assets\/zoom-128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}