ZoomR

Zoom in on articles.

Vad är ZoomR?

ZoomR är en Chrome-tillägg utvecklad av David Altmayer, och dess huvudfunktion är "Zoom in on articles.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner ZoomR-förlängningens CRX-fil

Ladda ner ZoomR-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn ZoomR ZoomR
ID jgmpfcpmgehgmeodlemlnnbpcdokboca
Officiell webbadress https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca
Beskrivning Zoom in on articles.
Filstorlek 4.1 KB
Antal Installationer 82
Aktuell Version 0.1.5
Senast Uppdaterad 2014-09-19
Publiceringsdatum 2014-09-19
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare David Altmayer
Betalningssätt free
Tilläggswebbplats https://github.com/dhaltmayer/ZoomR
Stödda Språk 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"
    ]
}