In Zoom

Zoom in and out on images and videos using shift + mouse wheel and by other ways.

In Zoomคืออะไร?

In Zoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kpion.github.io และคุณลักษณะหลักของมันคือ "Zoom in and out on images and videos using shift + mouse wheel and by other ways."

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

screenshot

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

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

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

                        This extension works "inline", i.e. images are not displayed in a popup - instead they are enlarged exactly where they are. 

Press shift (customizable) and use mouse wheel to zoom in or out an image or video under pointer.

It's open source: https://github.com/kpion/inzoom

If you have any suggestions, please don't hesitate to reach me on [email protected] or file an issue on the github page above.

New in version 1.31: Keyboard shortcut to enlarge a photo and bring it to the front in one step (alt + a).                    

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

ชื่อ In Zoom In Zoom
ID oppcghdbglmbhhobfoodedhokbadlenh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/in-zoom/oppcghdbglmbhhobfoodedhokbadlenh
คำอธิบาย Zoom in and out on images and videos using shift + mouse wheel and by other ways.
ขนาดไฟล์ 453 KB
จำนวนการติดตั้ง 5,000
เวอร์ชันปัจจุบัน 1.32
อัปเดตครั้งล่าสุด 2019-05-17
วันที่เผยแพร่ 2019-05-14
คะแนน 4.72/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา https://kpion.github.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://kpion.github.io/inzoom/
URL หน้าช่วยเหลือ https://kpion.github.io/inzoom/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "In Zoom",
    "version": "1.32",
    "description": "Zoom in and out on images and videos using shift + mouse wheel and by other ways.",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/kpion.github.io\/inzoom\/",
    "browser_action": {
        "default_popup": "browserAction\/index.html",
        "default_icon": {
            "16": "static\/images\/camera_lens_128.png",
            "32": "static\/images\/camera_lens_128.png",
            "48": "static\/images\/camera_lens_128.png",
            "128": "static\/images\/camera_lens_128.png"
        },
        "default_title": "In Zoom - zoom in \/ out on images and videos"
    },
    "background": {
        "page": "background\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "common\/app.js",
                "lib\/lightdom.js",
                "lib\/config.js",
                "lib\/hamster.js",
                "lib\/point.js",
                "inzoom\/inzoom.js"
            ],
            "css": [
                "inzoom\/style.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "static\/images\/camera_lens_128.png",
        "32": "static\/images\/camera_lens_128.png",
        "48": "static\/images\/camera_lens_128.png",
        "128": "static\/images\/camera_lens_128.png"
    },
    "manifest_version": 2
}