ZoomR
Zoom in on articles.
Wat is ZoomR?
ZoomR is een Chrome-extensie ontwikkeld door David Altmayer, en de belangrijkste functie is "Zoom in on articles.".
Extensie Screenshots
Download het CRX-bestand van de extensie ZoomR
Download ZoomR-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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).
Basisinformatie over de Extensie
Naam | ![]() |
ID | jgmpfcpmgehgmeodlemlnnbpcdokboca |
Officiële URL | https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca |
Beschrijving | Zoom in on articles. |
Bestandsgrootte | 4.1 KB |
Aantal Installaties | 82 |
Huidige Versie | 0.1.5 |
Laatst Bijgewerkt | 2014-09-19 |
Publicatiedatum | 2014-09-19 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | David Altmayer |
Betalingswijze | free |
Extensiewebsite | https://github.com/dhaltmayer/ZoomR |
Ondersteunde Talen | 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" ] } |