Zoomba
Customizable zoom increment.
Zoombaとは何ですか?
Zoombaはappdevswによって開発されたChromeの拡張機能で、その主な機能は「Customizable zoom increment.」です。
拡張機能のスクリーンショット
Zoomba拡張機能のCRXファイルをダウンロード
Zoomba拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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:\/\/*\/*" ] } |