ZoomR

Zoom in on articles.

Was ist ZoomR?

ZoomR ist eine Chrome-Erweiterung, die von David Altmayer entwickelt wurde, und ihr Hauptmerkmal ist "Zoom in on articles.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ZoomR-Erweiterungs-CRX-Datei herunterladen

Laden Sie ZoomR-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name ZoomR ZoomR
ID jgmpfcpmgehgmeodlemlnnbpcdokboca
Offizielle URL https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca
Beschreibung Zoom in on articles.
Dateigröße 4.1 KB
Installationsanzahl 82
Aktuelle Version 0.1.5
Letztes Update 2014-09-19
Veröffentlichungsdatum 2014-09-19
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler David Altmayer
Zahlungsart free
Erweiterungswebsite https://github.com/dhaltmayer/ZoomR
Unterstützte Sprachen 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"
    ]
}