ZoomR

Zoom in on articles.

Apa itu ZoomR?

ZoomR adalah ekstensi Chrome yang dikembangkan oleh David Altmayer, dan fitur utamanya adalah "Zoom in on articles.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi ZoomR

Unduh file ekstensi ZoomR dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama ZoomR ZoomR
ID jgmpfcpmgehgmeodlemlnnbpcdokboca
URL Resmi https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca
Deskripsi Zoom in on articles.
Ukuran File 4.1 KB
Jumlah Instalasi 82
Versi Saat Ini 0.1.5
Terakhir Diperbarui 2014-09-19
Tanggal Publikasi 2014-09-19
Penilaian 1.00/5 Total 1 Penilaian
Pengembang David Altmayer
Tipe Pembayaran free
Situs Ekstensi https://github.com/dhaltmayer/ZoomR
Bahasa yang Didukung 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"
    ]
}