ZoomR
Zoom in on articles.
Cos'è ZoomR?
ZoomR è un'estensione di Chrome sviluppata da David Altmayer, e la sua funzione principale è "Zoom in on articles.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ZoomR
Scarica i file di estensione ZoomR in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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).
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | jgmpfcpmgehgmeodlemlnnbpcdokboca |
URL Ufficiale | https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca |
Descrizione | Zoom in on articles. |
Dimensione del File | 4.1 KB |
Conteggio Installazioni | 82 |
Versione Corrente | 0.1.5 |
Ultimo Aggiornamento | 2014-09-19 |
Data di Pubblicazione | 2014-09-19 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | David Altmayer |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/dhaltmayer/ZoomR |
Lingue Supportate | 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" ] } |