Zoomify
Load web pages at 100% zoom level for better experience.
Zoomifyとは何ですか?
ZoomifyはRishabh Goelによって開発されたChromeの拡張機能で、その主な機能は「Load web pages at 100% zoom level for better experience.」です。
拡張機能のスクリーンショット
Zoomify拡張機能のCRXファイルをダウンロード
Zoomify拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Zoomify |
ID | elhgfighbokpcknobggmegijnpnefldk |
公式URL | https://chromewebstore.google.com/detail/zoomify/elhgfighbokpcknobggmegijnpnefldk |
説明 | Load web pages at 100% zoom level for better experience. |
ファイルサイズ | 4.41 KB |
インストール数 | 126 |
現在のバージョン | 1.4 |
最終更新日 | 2020-11-25 |
公開日 | 2020-10-28 |
開発者 | Rishabh Goel |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" ] } } |