Zoomba
Customizable zoom increment.
Was ist Zoomba?
Zoomba ist eine Chrome-Erweiterung, die von appdevsw entwickelt wurde, und ihr Hauptmerkmal ist "Customizable zoom increment.".
Erweiterungsscreenshots
Zoomba-Erweiterungs-CRX-Datei herunterladen
Laden Sie Zoomba-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | oifpkclgpipladdnaioaehmmccmljblh |
| Offizielle URL | https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh |
| Beschreibung | Customizable zoom increment. |
| Dateigröße | 16.34 KB |
| Installationsanzahl | 1,484 |
| Aktuelle Version | 1.2.1 |
| Letztes Update | 2019-09-17 |
| Veröffentlichungsdatum | 2019-09-17 |
| Bewertung | 4.45/5 Insgesamt 29 Bewertungen |
| Entwickler | appdevsw |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/appdevsw/zoomba |
| Hilfeseite URL | https://github.com/appdevsw/zoomba/issues |
| Unterstützte Sprachen | 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:\/\/*\/*"
]
} | |