ZoomR

Zoom in on articles.

ZoomR란 무엇입니까?

ZoomR은(는) David Altmayer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Zoom in on articles."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ZoomR enables you to zoom in on columns on websites. Simply right-click on the column (for example, on a news article) and click "Zoom Here". To zoom out, you can right-click again and click "Unzoom".

Technical: Essentially, this just calculates the zoom required to make the HTML element that was right-clicked be the full width of the screen (-10% so nothing gets cut off).

This requires Chrome version 39 (current dev channel).                    

확장 프로그램 기본 정보

이름 ZoomR ZoomR
ID jgmpfcpmgehgmeodlemlnnbpcdokboca
공식 URL https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca
설명 Zoom in on articles.
파일 크기 4.1 KB
설치 횟수 82
현재 버전 0.1.5
최근 업데이트 2014-09-19
출시 날짜 2014-09-19
평점 1.00/5 총 1 개의 평점
개발자 David Altmayer
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dhaltmayer/ZoomR
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ZoomR",
    "version": "0.1.5",
    "author": "David H. Altmayer",
    "minimum_chrome_version": "39",
    "description": "Zoom in on articles.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ]
}