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
官方網址 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"
    ]
}