ZoomR

Zoom in on articles.

What is ZoomR?

ZoomR is a Chrome extension developed by David Altmayer, and its main feature is "Zoom in on articles.".

Extension Screenshots

screenshot
screenshot
screenshot

Download ZoomR Extension CRX File

Download ZoomR extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name ZoomR ZoomR
ID jgmpfcpmgehgmeodlemlnnbpcdokboca
Official URL https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca
Description Zoom in on articles.
File Size 4.1 KB
Installation Count 82
Current Version 0.1.5
Last Updated 2014-09-19
Publish Date 2014-09-19
Rating 1.00/5 Total 1 Ratings
Developer David Altmayer
Payment Type free
Extension Website https://github.com/dhaltmayer/ZoomR
Supported Languages 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"
    ]
}