ZoomR

Zoom in on articles.

ZoomRとは何ですか?

ZoomRはDavid Altmayerによって開発されたChromeの拡張機能で、その主な機能は「Zoom in on articles.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

ZoomR拡張機能のCRXファイルをダウンロード

ZoomR拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}