ZoomR

Zoom in on articles.

ZoomR là gì?

ZoomR là một tiện ích mở rộng Chrome được phát triển bởi David Altmayer, và tính năng chính của nó là "Zoom in on articles.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng ZoomR 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

                        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).                    

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

Tên ZoomR ZoomR
ID jgmpfcpmgehgmeodlemlnnbpcdokboca
URL Chính Thức https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca
Mô tả Zoom in on articles.
Kích Thước Tệp 4.1 KB
Số Lần Cài Đặt 82
Phiên Bản Hiện Tại 0.1.5
Cập Nhật Lần Cuối 2014-09-19
Ngày Phát Hành 2014-09-19
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển David Altmayer
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dhaltmayer/ZoomR
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}