Ctrl Zoom
Ctrl + touchpad scroll to zoom
Cos'è Ctrl Zoom?
Ctrl Zoom è un'estensione di Chrome sviluppata da Hempe, e la sua funzione principale è "Ctrl + touchpad scroll to zoom".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Ctrl Zoom
Scarica i file di estensione Ctrl Zoom 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
                        This extension adds back the Ctrl + scroll zoom for touchpads.
The reason this extension exists, is that ctrl + touchpad scroll zooming was removed from Chrome, and the "Bug" is marked as WontFix (https://bugs.chromium.org/p/chromium/issues/detail?id=878694).                     Informazioni di Base sull'Estensione
| Nome |  | 
| ID | indpmklmjbcfkbnbhoknlggplddednhp | 
| URL Ufficiale | https://chromewebstore.google.com/detail/ctrl-zoom/indpmklmjbcfkbnbhoknlggplddednhp | 
| Descrizione | Ctrl + touchpad scroll to zoom | 
| Dimensione del File | 41.45 KB | 
| Conteggio Installazioni | 927 | 
| Versione Corrente | 1.5 | 
| Ultimo Aggiornamento | 2022-10-25 | 
| Data di Pubblicazione | 2019-11-26 | 
| Valutazione | 4.90/5 Totale 10 Valutazioni | 
| Sviluppatore | Hempe | 
| [email protected] | |
| Tipo di Pagamento | free | 
| Sito Web dell'Estensione | https://github.com/hempe/ctrlZoom | 
| URL della Pagina della Politica sulla Privacy | https://github.com/hempe/ctrlZoom/blob/master/privacy-policy.md | 
| Lingue Supportate | en | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ctrl Zoom",
    "version": "1.5",
    "description": "Ctrl + touchpad scroll to zoom",
    "homepage_url": "https:\/\/github.com\/hempe\/ctrlZoom",
    "author": "hempe",
    "short_name": "ctrlZoom",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "js\/popup.js",
                "js\/ctrlZoom.js"
            ]
        }
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_popup": "options.html",
        "default_title": "ChromiePop"
    }
} | |