Ctrl Zoom
Ctrl + touchpad scroll to zoom
Что такое Ctrl Zoom?
Ctrl Zoom - это расширение Chrome, разработанное Hempe, и его основная функция - "Ctrl + touchpad scroll to zoom".
Снимки экрана расширения
Скачать файл CRX расширения Ctrl Zoom
Скачайте файлы расширений 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 |
| Электронная почта | [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"
}
} | |