parent
1afbde6e19
commit
1f15d22643
5 changed files with 48 additions and 2 deletions
@ -0,0 +1,34 @@ |
||||
// For chromium
|
||||
// const ZOOM_SETTINGS = [
|
||||
// 0.25, 0.33, 0.50, 0.66, 0.75, 0.80, 0.90, 1.00,
|
||||
// 1.10, 1.25, 1.50, 1.75, 2.00, 2.50, 3.00, 4.00, 5.00
|
||||
// ];
|
||||
|
||||
const ZOOM_SETTINGS = [ |
||||
0.33, 0.50, 0.66, 0.75, 0.80, 0.90, 1.00, |
||||
1.10, 1.25, 1.50, 1.75, 2.00, 2.50, 3.00 |
||||
]; |
||||
|
||||
const zoomIn = (tabId = undefined) => { |
||||
browser.tabs.getZoom(tabId).then((factor) => { |
||||
for (let f of ZOOM_SETTINGS) { |
||||
if (f > factor) { |
||||
browser.tabs.setZoom(tabId, f); |
||||
break; |
||||
} |
||||
} |
||||
}); |
||||
} |
||||
|
||||
const zoomOut = (tabId = undefined) => { |
||||
browser.tabs.getZoom(tabId).then((factor) => { |
||||
for (let f of [].concat(ZOOM_SETTINGS).reverse()) { |
||||
if (f < factor) { |
||||
browser.tabs.setZoom(tabId, f); |
||||
break; |
||||
} |
||||
} |
||||
}); |
||||
} |
||||
|
||||
export { zoomIn, zoomOut }; |
Reference in new issue