Zoomify
Load web pages at 100% zoom level for better experience.
What is Zoomify?
Zoomify is a Chrome extension developed by Rishabh Goel, and its main feature is "Load web pages at 100% zoom level for better experience.".
Extension Screenshots
Download Zoomify Extension CRX File
Download Zoomify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Load web pages at 100% zoom level for a particular domain. For users of the domain, application would be loaded at 100% zoom level resulting in better customer experience.
Extension Basic Information
Name | Zoomify |
ID | elhgfighbokpcknobggmegijnpnefldk |
Official URL | https://chromewebstore.google.com/detail/zoomify/elhgfighbokpcknobggmegijnpnefldk |
Description | Load web pages at 100% zoom level for better experience. |
File Size | 4.41 KB |
Installation Count | 126 |
Current Version | 1.4 |
Last Updated | 2020-11-25 |
Publish Date | 2020-10-28 |
Developer | Rishabh Goel |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zoomify", "version": "1.4", "description": "Load web pages at 100% zoom level for better experience.", "externally_connectable": { "matches": [ "*:\/\/*.hex.a2z.com\/board\/*" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.hex.a2z.com\/board\/*" ], "js": [ "prezoomify.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.hex.a2z.com\/board\/*" ], "js": [ "postzoomify.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] } } |