Ctrl Zoom
Ctrl + touchpad scroll to zoom
Vad är Ctrl Zoom?
Ctrl Zoom är en Chrome-tillägg utvecklad av Hempe, och dess huvudfunktion är "Ctrl + touchpad scroll to zoom".
Tilläggsskärmbilder
Ladda ner Ctrl Zoom-förlängningens CRX-fil
Ladda ner Ctrl Zoom-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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). Grundläggande Information om Tillägg
| Namn | |
| ID | indpmklmjbcfkbnbhoknlggplddednhp |
| Officiell webbadress | https://chromewebstore.google.com/detail/ctrl-zoom/indpmklmjbcfkbnbhoknlggplddednhp |
| Beskrivning | Ctrl + touchpad scroll to zoom |
| Filstorlek | 41.45 KB |
| Antal Installationer | 927 |
| Aktuell Version | 1.5 |
| Senast Uppdaterad | 2022-10-25 |
| Publiceringsdatum | 2019-11-26 |
| Betyg | 4.90/5 Totalt 10 Betyg |
| Utvecklare | Hempe |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/hempe/ctrlZoom |
| URL till Sekretesspolicy Sidan | https://github.com/hempe/ctrlZoom/blob/master/privacy-policy.md |
| Stödda Språk | 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"
}
} | |