Zoomify
Load web pages at 100% zoom level for better experience.
Cos'è Zoomify?
Zoomify è un'estensione di Chrome sviluppata da Rishabh Goel, e la sua funzione principale è "Load web pages at 100% zoom level for better experience.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Zoomify
Scarica i file di estensione Zoomify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | elhgfighbokpcknobggmegijnpnefldk |
| URL Ufficiale | https://chromewebstore.google.com/detail/zoomify/elhgfighbokpcknobggmegijnpnefldk |
| Descrizione | Load web pages at 100% zoom level for better experience. |
| Dimensione del File | 4.41 KB |
| Conteggio Installazioni | 126 |
| Versione Corrente | 1.4 |
| Ultimo Aggiornamento | 2020-11-25 |
| Data di Pubblicazione | 2020-10-28 |
| Sviluppatore | Rishabh Goel |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
}
} | |