Zoomba
Customizable zoom increment.
ما هو Zoomba؟
Zoomba هو إضافة Chrome تم تطويرها بواسطة appdevsw، والميزة الرئيسية لها هي "Customizable zoom increment.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Zoomba
قم بتنزيل ملفات الامتداد Zoomba بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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:\/\/*\/*" ] } |