iZoom
Automatically changes zoom level to fit window width. With three different zooming modes.
iZoom क्या है?
iZoom jp-correia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically changes zoom level to fit window width. With three different zooming modes."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में iZoom एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Automatically changes zoom level to fit window width. With three different zooming modes. 1) Shrink Only - Zoom is always at 100% unless window width is decreased and the contents are shrinked to fit, avoiding horizontal scrollbar (this is probably the expected behaviour for most of the users). 2) Grow Only - Zoom level is never lower than 100% and it only grows for the contents to fit window width. 3) Shrink and Grow - Contents are shrinked and growed to fit window width. In addition to the zoom mode the user can choose which addresses he/she wants to exclude from being zoomed in/out. This option is available from options page and a faster and user-friendly context menu. For more informations/support on this extension, its changes through releases and how to contact me please visit: https://github.com/JoaoPe/iZoom/wiki To help translating it to your native language please check: https://github.com/JoaoPe/iZoom/wiki/Internationalization
एक्सटेंशन की मूल जानकारी
नाम | iZoom |
ID | iheccogfcpjfjbnlohnlgdljaefpgaoi |
आधिकारिक URL | https://chromewebstore.google.com/detail/izoom/iheccogfcpjfjbnlohnlgdljaefpgaoi |
विवरण | Automatically changes zoom level to fit window width. With three different zooming modes. |
फ़ाइल का आकार | 48.67 KB |
स्थापना संख्या | 3,676 |
वर्तमान संस्करण | 0.9.11 |
अंतिम अपडेट | 2015-05-07 |
प्रकाशन तिथि | 2015-05-07 |
रेटिंग | 3.69/5 कुल 85 रेटिंग्स |
डेवलपर | jp-correia |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/joaope/iZoom |
सहायता पृष्ठ URL | https://github.com/joaope/iZoom/issues |
समर्थित भाषाएँ | en,pt-PT |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "version": "0.9.11", "description": "__MSG_extension_description__", "icons": { "16": "media\/icon16.png", "32": "media\/icon32.png", "48": "media\/icon48.png", "128": "media\/icon128.png", "256": "media\/icon256.png" }, "default_locale": "en", "browser_action": { "default_icon": "media\/icon128.png", "default_title": "__MSG_browserActions_tooltip__", "default_popup": "popup.html" }, "minimum_chrome_version": "5.0.316.0", "background": { "page": "background.html" }, "options_page": "options.html", "content_scripts": [ { "js": [ "scripts\/main.js", "scripts\/options.js", "izoom.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "permissions": [ "contextMenus" ] } |