Ctrl Zoom
Ctrl + touchpad scroll to zoom
Ctrl Zoomとは何ですか?
Ctrl ZoomはHempeによって開発されたChromeの拡張機能で、その主な機能は「Ctrl + touchpad scroll to zoom」です。
拡張機能のスクリーンショット
Ctrl Zoom拡張機能のCRXファイルをダウンロード
Ctrl Zoom拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds back the Ctrl + scroll zoom for touchpads.
The reason this extension exists, is that ctrl + touchpad scroll zooming was removed from Chrome, and the "Bug" is marked as WontFix (https://bugs.chromium.org/p/chromium/issues/detail?id=878694). 拡張機能の基本情報
| 名前 | |
| ID | indpmklmjbcfkbnbhoknlggplddednhp |
| 公式URL | https://chromewebstore.google.com/detail/ctrl-zoom/indpmklmjbcfkbnbhoknlggplddednhp |
| 説明 | Ctrl + touchpad scroll to zoom |
| ファイルサイズ | 41.45 KB |
| インストール数 | 927 |
| 現在のバージョン | 1.5 |
| 最終更新日 | 2022-10-25 |
| 公開日 | 2019-11-26 |
| 評価 | 4.90/5 合計 10 レビュー |
| 開発者 | Hempe |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/hempe/ctrlZoom |
| プライバシーポリシーページのURL | https://github.com/hempe/ctrlZoom/blob/master/privacy-policy.md |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Ctrl Zoom",
"version": "1.5",
"description": "Ctrl + touchpad scroll to zoom",
"homepage_url": "https:\/\/github.com\/hempe\/ctrlZoom",
"author": "hempe",
"short_name": "ctrlZoom",
"manifest_version": 3,
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [],
"js": [
"js\/contentScript.js"
]
}
],
"web_accessible_resources": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"resources": [
"js\/popup.js",
"js\/ctrlZoom.js"
]
}
],
"options_page": "options.html",
"background": {
"service_worker": "js\/background.js",
"type": "module"
},
"icons": {
"16": "images\/icon_16.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"action": {
"default_icon": {
"16": "images\/icon_16.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"default_popup": "options.html",
"default_title": "ChromiePop"
}
} | |