iZoom

Automatically changes zoom level to fit window width. With three different zooming modes.

iZoom란 무엇입니까?

iZoom은(는) jp-correia에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically changes zoom level to fit window width. With three different zooming modes."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

iZoom 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Automatically changes zoom level to fit window width. With three different zooming modes.

1) Shrink Only - Zoom is always at 100% unless window width is decreased and the contents are shrinked to fit, avoiding horizontal scrollbar (this is probably the expected behaviour for most of the users).

2) Grow Only - Zoom level is never lower than 100% and it only grows for the contents to fit window width.

3) Shrink and Grow - Contents are shrinked and growed to fit window width.

In addition to the zoom mode the user can choose which addresses he/she wants to exclude from being zoomed in/out. This option is available from options page and a faster and user-friendly context menu.


For more informations/support on this extension, its changes through releases and how to contact me please visit: https://github.com/JoaoPe/iZoom/wiki

To help translating it to your native language please check: https://github.com/JoaoPe/iZoom/wiki/Internationalization                    

확장 프로그램 기본 정보

이름 iZoom iZoom
ID iheccogfcpjfjbnlohnlgdljaefpgaoi
공식 URL https://chromewebstore.google.com/detail/izoom/iheccogfcpjfjbnlohnlgdljaefpgaoi
설명 Automatically changes zoom level to fit window width. With three different zooming modes.
파일 크기 48.67 KB
설치 횟수 3,676
현재 버전 0.9.11
최근 업데이트 2015-05-07
출시 날짜 2015-05-07
평점 3.69/5 총 85 개의 평점
개발자 jp-correia
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/joaope/iZoom
도움말 페이지 URL https://github.com/joaope/iZoom/issues
지원되는 언어 en,pt-PT
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "version": "0.9.11",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "media\/icon16.png",
        "32": "media\/icon32.png",
        "48": "media\/icon48.png",
        "128": "media\/icon128.png",
        "256": "media\/icon256.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": "media\/icon128.png",
        "default_title": "__MSG_browserActions_tooltip__",
        "default_popup": "popup.html"
    },
    "minimum_chrome_version": "5.0.316.0",
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "js": [
                "scripts\/main.js",
                "scripts\/options.js",
                "izoom.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}