Custom Page Zoom

Easily set a custom zoom level for each website (or all websites)

Custom Page Zoomคืออะไร?

Custom Page Zoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Grephy และคุณลักษณะหลักของมันคือ "Easily set a custom zoom level for each website (or all websites)"

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

screenshot
screenshot

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

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

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

                        Custom Page Zoom extension lets you set separate zoom levels for each website. Besides, you can set the X and Y positions for each page.

Some features:
1. Add custom zoom levels for each website easily from the browser's toolbar popup window.
2. Set X and Y positions for each page.
3. Save button stores the settings for individual pages.
4. You can delete each setting from the toolbar popup window by clicking on the close (x) button.
5. There is also an option to set a zoom level for all websites by adding "*" instead of a "URL".
6. To quickly turn the Addon ON or OFF, there are two separate buttons at the popup UI, top section.
To add a custom zoom level, (a) simply open the toolbar popup UI, (b) change the zoom slider to adjust the magnifying scale, (c) then change the other two sliders for X and Y positions, (d) and finally click on the add (+) button. The settings will be saved for the page you selected (the URL for each page will be automatically added to the popup UI once you open it, however, you can change it to your desired value).

Note: to report bugs, please visit the addon's homepage (https://mybrowseraddon.com/custom-page-zoom.html) and fill the bug report form.                    

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

ชื่อ Custom Page Zoom Custom Page Zoom
ID jodiabicmogcbbiocceenmeflipeelle
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/custom-page-zoom/jodiabicmogcbbiocceenmeflipeelle
คำอธิบาย Easily set a custom zoom level for each website (or all websites)
ขนาดไฟล์ 47.12 KB
จำนวนการติดตั้ง 11,823
เวอร์ชันปัจจุบัน 0.1.8
อัปเดตครั้งล่าสุด 2024-01-31
วันที่เผยแพร่ 2018-07-30
คะแนน 3.98/5 รวมทั้งหมด 47 คะแนน
ผู้พัฒนา Grephy
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/custom-page-zoom.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/custom-page-zoom.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.8",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Custom Page Zoom",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/custom-page-zoom.html",
    "description": "Easily set a custom zoom level for each website (or all websites)",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Custom Page Zoom",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}