ZoomR
Zoom in on articles.
Qu'est-ce que ZoomR ?
ZoomR est une extension Chrome développée par David Altmayer, et sa fonction principale est "Zoom in on articles.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ZoomR
Téléchargez les fichiers d'extension ZoomR au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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).
Informations de Base sur l'Extension
Nom | ![]() |
ID | jgmpfcpmgehgmeodlemlnnbpcdokboca |
URL Officiel | https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca |
Description | Zoom in on articles. |
Taille du Fichier | 4.1 KB |
Nombre d'Installations | 82 |
Version Actuelle | 0.1.5 |
Dernière Mise à Jour | 2014-09-19 |
Date de Publication | 2014-09-19 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | David Altmayer |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/dhaltmayer/ZoomR |
Langues Prises en Charge | 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" ] } |