Zoomba
Customizable zoom increment.
Zoomba क्या है?
Zoomba appdevsw द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customizable zoom increment."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Zoomba एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Zoomba |
ID | oifpkclgpipladdnaioaehmmccmljblh |
आधिकारिक URL | https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh |
विवरण | Customizable zoom increment. |
फ़ाइल का आकार | 16.34 KB |
स्थापना संख्या | 1,484 |
वर्तमान संस्करण | 1.2.1 |
अंतिम अपडेट | 2019-09-17 |
प्रकाशन तिथि | 2019-09-17 |
रेटिंग | 4.45/5 कुल 29 रेटिंग्स |
डेवलपर | appdevsw |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/appdevsw/zoomba |
सहायता पृष्ठ URL | https://github.com/appdevsw/zoomba/issues |
समर्थित भाषाएँ | 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:\/\/*\/*" ] } |