Zoomba
Customizable zoom increment.
Wat is Zoomba?
Zoomba is een Chrome-extensie ontwikkeld door appdevsw, en de belangrijkste functie is "Customizable zoom increment.".
Extensie Screenshots
Download het CRX-bestand van de extensie Zoomba
Download Zoomba-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Zoomba is an extension, which allows you to set a zoom increment and assign it to different keys or mouse wheel actions. You can use several keys and wheel combinations to set different zoom steps.
Basisinformatie over de Extensie
Naam | Zoomba |
ID | oifpkclgpipladdnaioaehmmccmljblh |
Officiële URL | https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh |
Beschrijving | Customizable zoom increment. |
Bestandsgrootte | 16.34 KB |
Aantal Installaties | 1,484 |
Huidige Versie | 1.2.1 |
Laatst Bijgewerkt | 2019-09-17 |
Publicatiedatum | 2019-09-17 |
Beoordeling | 4.45/5 Totaal 29 Beoordelingen |
Ontwikkelaar | appdevsw |
Betalingswijze | free |
Extensiewebsite | https://github.com/appdevsw/zoomba |
Help Pagina-URL | https://github.com/appdevsw/zoomba/issues |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zoomba", "short_name": "Zoomba", "description": "Customizable zoom increment.", "version": "1.2.1", "author": "[email protected]", "browser_action": { "default_title": "Zoomba", "default_popup": "popup.html" }, "options_page": "popup.html", "background": { "persistent": false, "scripts": [ "common.js", "settings.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "common.js", "keyboard.js", "content.js" ], "all_frames": false } ], "icons": { "128": "loupe128.png" }, "content_security_policy": "script-src 'self'; object-src 'self';", "permissions": [ "storage", "tabs", "management", "https:\/\/*\/*", "http:\/\/*\/*" ] } |