ZoomR
Zoom in on articles.
Τι είναι το ZoomR;
Το ZoomR είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον David Altmayer, και η κύρια λειτουργία του είναι "Zoom in on articles.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ZoomR
Λήψη αρχείων επέκτασης ZoomR σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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).
Βασικές Πληροφορίες Επέκτασης
Όνομα | ![]() |
ID | jgmpfcpmgehgmeodlemlnnbpcdokboca |
Επίσημο URL | https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca |
Περιγραφή | Zoom in on articles. |
Μέγεθος Αρχείου | 4.1 KB |
Αριθμός Εγκαταστάσεων | 82 |
Τρέχουσα Έκδοση | 0.1.5 |
Τελευταία Ενημέρωση | 2014-09-19 |
Ημερομηνία Δημοσίευσης | 2014-09-19 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | David Altmayer |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/dhaltmayer/ZoomR |
Υποστηριζόμενες Γλώσσες | 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" ] } |