Zoomba
Customizable zoom increment.
Hvad er Zoomba?
Zoomba er en Chrome-udvidelse udviklet af appdevsw, og dens hovedfunktion er "Customizable zoom increment.".
Udvidelsesskærmbilleder
Download Zoomba-udvidelses-CRX-fil
Download Zoomba-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Zoomba |
ID | oifpkclgpipladdnaioaehmmccmljblh |
Officiel URL | https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh |
Beskrivelse | Customizable zoom increment. |
Filstørrelse | 16.34 KB |
Antal Installationer | 1,484 |
Nuværende Version | 1.2.1 |
Senest Opdateret | 2019-09-17 |
Udgivelsesdato | 2019-09-17 |
Bedømmelse | 4.45/5 Samlet 29 Bedømmelser |
Udvikler | appdevsw |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/appdevsw/zoomba |
Hjælpeside-URL | https://github.com/appdevsw/zoomba/issues |
Understøttede Sprog | 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:\/\/*\/*" ] } |