Image Autosizer

Customize how images are displayed and controlled within your browser.

Image Autosizer là gì?

Image Autosizer là một tiện ích mở rộng Chrome được phát triển bởi k-mouse, và tính năng chính của nó là "Customize how images are displayed and controlled within your browser.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Image Autosizer

Tải xuống các tệp mở rộng Image Autosizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Image Autosizer provides control over how image files are displayed in the browser window.

Features:
- Several display modes, changing how the image scales to the window
- Smooth/inertial panning
- Custom background color
- Optional checkerboard-background
- Option to close image on long mouse press

Usage:
- First, open up an image file
- Click image to toggle the size
- Double click to fill image to window
- Press 'c' to temporarily change background color

There is a quick guide in the preferences with some additional details.

This extension was originally developed for Opera and is now finally available for Chrome! Chrome is quite limited in terms of viewing images, so this extension provides much-needed features for this purpose and should make your browsing experience more comfortable.
All feedback is appreciated. Many of your suggestions have been implemented in previous versions so keep them coming. I do this for free on my spare time, your response now and then helps motivate me, thanks!

Q & A
========
Q: This extension does not work!
A: Go to the extension's preferences and read through the quick guide. If it doesn't work only on certain pages, make sure you have enabled the extension for secure pages if you are surfing on one. Also remember that this extension only takes effect if an image file is opened. It does not do anything to images located inside an html-document.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Image Autosizer Image Autosizer
ID kbbmeeflfcjnbeelhinbnlmdjmekfhbm
URL Chính Thức https://chromewebstore.google.com/detail/image-autosizer/kbbmeeflfcjnbeelhinbnlmdjmekfhbm
Mô tả Customize how images are displayed and controlled within your browser.
Kích Thước Tệp 41.63 KB
Số Lần Cài Đặt 4,552
Phiên Bản Hiện Tại 3.4
Cập Nhật Lần Cuối 2017-02-03
Ngày Phát Hành 2017-02-03
Đánh Giá 4.15/5 Tổng số 59 Đánh Giá
Nhà Phát Triển k-mouse
Loại Thanh Toán free
Trang Web Mở Rộng https://vivaldi.net/en-US/userblogs/entry/image-autosizer
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Autosizer",
    "description": "Customize how images are displayed and controlled within your browser.",
    "manifest_version": 2,
    "version": "3.4",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "img\/icon_128.png",
        "64": "img\/icon_64.png",
        "18": "img\/icon_18.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "contentstyle.css",
        "img\/help_16.png",
        "img\/help_22.png",
        "img\/icon.png",
        "img\/icon_18.png",
        "img\/preferences.png",
        "img\/quick_guide.png",
        "options.js",
        "options.css"
    ],
    "permissions": [
        ""
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'unsafe-eval';"
}