Chrome still has that bug

This commit is contained in:
Tamius Han 2021-04-08 21:53:49 +02:00
parent 5f04c03f80
commit 46c635b11b
4 changed files with 18 additions and 7 deletions

View File

@ -19,8 +19,7 @@
## v5.x (current major) ## v5.x (current major)
### v5.0.1 ### v5.0.1
* Turned off zoom limitations for Edge and Chrome. * Added an option for users to turn off (and/or configure) Chrome/Edge's zoom limiter.
* Added an option for users to manually re-enable (and configure) Chrome/Edge's zoom limiter.
### v5.0.0 ### v5.0.0

View File

@ -461,6 +461,21 @@ const ExtensionConfPatch = [
// do nothing // do nothing
} }
} }
}, {
forVersion: '5.0.1.1',
updateFn: (userOptions, defaultOptions) => {
try {
userOptions.mitigations = {
zoomLimit: {
enabled: true,
limit: 0.997,
fullscreenOnly: true
}
}
} catch (e) {
// do nothing
}
}
} }
]; ];

View File

@ -2,7 +2,7 @@
"manifest_version": 2, "manifest_version": 2,
"name": "Ultrawidify", "name": "Ultrawidify",
"description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.", "description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.",
"version": "5.0.1", "version": "5.0.1.1",
"applications": { "applications": {
"gecko": { "gecko": {
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}" "id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"

View File

@ -5,10 +5,7 @@
<p class="label">5.0.1</p> <p class="label">5.0.1</p>
<ul> <ul>
<li> <li>
Disabled zoom limitation in Chrome build of the addon (workaround remains active in <a href="https://microsoftedge.microsoft.com/addons/detail/ultrawidify/lmpgpgechmkkkehkihpiddbcbgibokbi" target="_blank">Edge Addons</a> build of the addon) Added an option to disable and further configure zoom limitations.
</li>
<li>
Added an option to toggle and further configure zoom limitation.
</li> </li>
</ul> </ul>
<p> <p>