Software-update: Google Chrome 88.0.4324.96

Google Chrome logo (80 pix) Google heeft versie 88 van zijn webbrowser Chrome uitgebracht. Google Chrome is beschikbaar voor Windows, Linux en macOS. Er zijn ook versies voor Android en iOS, maar die volgen een iets ander releaseschema. In versie 88 zijn er een aantal dingen die niet meer mogelijk zijn, zoals Adobe Flash, ftp, dtls 1.0 en downloads over een niet-beveiligde verbinding. Gelukkig zijn er ook nieuwe dingen toegevoegd, zoals officiële ondersteuning voor extensies gemaakt met manifest versie 3, is er bescherming tegen tab nabbing en kunnen wachtwoorden nu handmatig worden aangepast. De belangrijkste veranderingen die in versie 88 zijn aangebracht, naast de gebruikelijke bug- en security fixes, zijn hieronder voor je op een rijtje gezet.

Digital Goods API

Chrome now supports an API for querying and managing digital products to facilitate in-app purchases from web applications. This is used with the Payment Request API, which is used to make the actual purchases. The API would be linked to a digital distribution service connected via the user agent. In Chromium, this is specifically a web API wrapper around the Android Play Billing API.

This is needed so that web apps in the Play Store can accept purchases for digital goods. (Play policies prevent them from accepting payment via any other method.) Without this, websites that sell digital goods are not installable through the Play Store.

In Chrome 88, this is available for Android in an origin trial. For a list of other origin trials starting in this release, see below.

Origin Trials

This version of Chrome introduces the origin trial described below. Origin trials allow you to try new features and give feedback on usability, practicality, and effectiveness to the web standards community. To register for any of the origin trials currently supported in Chrome, including the ones described below, visit the Origin Trials dashboard. To learn more about origin trials themselves, visit the Origin Trials Guide for Web Developers.

New Origin Trials
WebXR: AR Lighting Estimation

Allows sites to query for estimates of the environmental lighting conditions within WebXR sessions. This exposes both spherical harmonics representing the ambient lighting, as well as a cubemap texture representing "reflections". Adding lighting estimation can help to make models feel more natural and like they "fit" better with the user's environment. This can make them feel more "real" or "natural".

In Chrome 88, this is available for Android only.

Completed Origin Trials

The following features, previously in Chrome origin trials, are now enabled by default.

performance.measureMemory() Method

Adds the performance.measureMemory() method that estimates the memory usage of the web page in case the page is currently isolated (e.g. on Desktop). Because the method is gated behind COOP/COEP web sites need to enabled crossOriginIsolated to use this method. For more information, see Monitor your web page's total memory usage with measureMemory().

PointerLock unadjustedMovement

Adds the ability to request unadjusted/unaccelerated mouse movement data when in PointerLock. If unadjustedMovement is set to true, then the pointer movements will not be affected by the underlying platform modifications such as mouse acceleration. For more information, see Disable mouse acceleration to provide a better FPS gaming experience.

Other features in this release
Anchor rel="external" implies rel=noopener by Default

To mitigate "tab-napping" attacks, in which a new tab/window opened by a victim context may navigate that opener context, anchors that target _blank will behave as though rel is set to noopener. To opt out of this behavior, you can set rel to opener. This conforms to a change in the HTML standard.

Dark Mode Form Controls and Scrollbars

Dark mode is an accessibility feature that allows web authors to enable their web pages to be viewed in dark mode. When enabled, users are able to view dark mode supported websites by toggling the dark mode settings on their OS. The benefits of dark mode are being easier on the eyes in a low light environment and lower battery consumption. For more about dark mode and form controls, see Improved dark mode default styling with the color-scheme CSS property and the corresponding meta tag.

AbortSignal in addEventListener()

Adds the AbortSignal option, named signal, to the options parameter of addEventListener(). The signal option must first be created by an AbortController by accessing the signal property on an AbortController instance. Once the signal is passed in to addEventListener(), calling AbortController.abort() removes the event listener added with addEventListener().

CSS aspect-ratio Property

Allows explicitly specifying an aspect ratio for any element to get similar behavior to a replaced element. This generalizes the aspect ratio concept to general elements. It allows various effects, examples include sizing <iframe> elements using an aspect ratio, filmstrips where each element has the same height but needs an appropriate width, and cases where a replaced element is wrapped by a component but should keep the aspect ratio.

CSS Selectors 4: Complex :not()

Allows complex selectors inside the :not() pseudo class, such as :not(.a + .b .c).

Don't Clear adoptedStyleSheets on Adoption to/from <template>

When adopting a shadow root into a <template> document from a document that the <template> is in (or vice versa), Chrome will no longer clear its adoptedStyleSheets. Currently Chrome always clears adoptedStyleSheets when the shadow root containing it is adopted into a different document. This ensures that constructed stylesheets are not used across <iframe> elements, but this also covers adopting into/from <template> elements, causing some confusion for the web developer.

ElementInternals.shadowRoot Attribute

A new attribute on ElementInternals, shadowRoot, allows custom elements to access their own shadow root, regardless of open/closed status. Additionally, further restrictions are added to the attachInternals() method to ensure that custom elements get the first chance to attach the ElementInternals interface. With this change, the attachInternals() method will throw an exception if called before the custom element constructor being run.

This feature was mostly driven, at least initially, by the declarative Shadow DOM feature introduction. With declarative Shadow DOM, there was a problem with closed shadow roots: declarative shadow content loads before the custom element is upgraded, which means that closed shadow content would have been inaccessible. In addition to the declarative Shadow DOM use case, this feature also offers a convenience to custom element authors, who no longer need to keep a reference to attached shadow roots, and can instead use the ElementInternals interface.

Make Type Optional in WakeLock.request()

The type parameter in WakeLock.request() is now optional and defaults to "screen", which is currently the only allowed value. For more information, see Stay awake with the Screen Wake Lock API.

Origin Isolation

Origin isolation allows developers to opt in to giving up certain cross-origin same-site access capabilities—namely synchronous scripting via document.domain, and calling postMessage() with WebAssembly.Module instances. This gives the browser more flexibility in implementation technologies. Reasons why a site may want better isolation include: performance isolation, allocations of large amounts of memory, side-channel protection (e.g. against Spectre), and improved memory measurement.

path() Support in clip-path CSS Property

Adds support for path() as a value for the CSS clip-path property, which allows specifying SVG-style paths for clipping. This supplements the four basic shapes currently supported by clip-path: circle, ellipse, polygon, and url. For example, the following would clip an element with a triangle: clip-path: path(oddeven, 'M 5 5 h 100 v 100 Z')

Permissions-Policy Header

The Permissions-Policy HTTP header replaces the existing Feature-Policy header for controlling delegation of permissions and powerful features. The header uses a structured syntax, and allows sites to more tightly restrict which origins can be granted access to features.

RTCRtpTransceiver.stop()

Transceivers allow the sending and/or receiving of media in WebRTC. Stopping a transceiver makes it permanently inactive and frees its network port, encoder, and decoder resources. This also makes its m= section in the SDP reusable by future transceivers, preventing the SDP from growing indefinitely as transceivers are added and removed. This is part of "Perfect Negotiation", which makes signaling in WebRTC race free and less error-prone.

JavaScript

This version of Chrome incorporates version 8.8 of the V8 JavaScript engine. It specifically includes the change listed below. You can find a complete list of recent features in the V8 release notes.

Shared Array Buffers, Atomics, and Futex APIs

Adds the JavaScript type SharedArrayBuffer gated behind COOP/COEP. A SharedArrayBuffer allows a message to be posted to a worker by sending a reference instead of a copy of the sent data.JavaScript Atomics provides atomic loads and stores and read/modify/write accesses to SharedArrayBuffer objects. Atomics.wait() provides the ability for a worker to wait for another worker to signal it, without having to spinlock.

The primary use case for SharedArrayBuffer is for asm.js code, but it is also useful for implementing other higher-level sharing between Workers.

For more information, see Making your website "cross-origin isolated" using COOP and COEP.

Deprecations, and Removals

This version of Chrome introduces the deprecations and removals listed below. Visit ChromeStatus.com for lists of current deprecations and previous removals.

Don't Allow Popups During Page Unload (Enterprises)

Since Chrome 80, pages have no longer been able to open a new page during unloading using window.open(). Since then enterprises have been able to use the AllowPopupsDuringPageUnload policy flag to allow popups during page unload. Starting in Chrome 88, this flag is no longer supported.

FTP Support Removed

Chrome is removing support for FTP URLs. The legacy FTP implementation in Chrome has no support for encrypted connections (FTPS), nor proxies. Usage of FTP in the browser is sufficiently low that it is no longer viable to invest in improving the existing FTP client. In addition, more capable FTP clients are available on all affected platforms.

Google Chrome 72 and later removed support for fetching document subresources over FTP and rendering of top level FTP resources. Navigating to FTP URLs results in showing a directory listing or a download depending on the type of resource. A bug in Google Chrome 74 and later resulted in dropping support for accessing FTP URLs over HTTP proxies. Proxy support for FTP was removed entirely in Google Chrome 76.

The remaining capabilities of Google Chrome's FTP implementation were restricted to either displaying a directory listing or downloading a resource over unencrypted connections.

In Chrome 77, FTP support was disabled by default for fifty percent of users but was available with flags.

In Chrome 88 all FTP support is disabled.

Web Components v0 Removed

Web Components v0 have been in a reverse origin trial since Chrome 80. This allowed users of the API time to upgrade their sites while ensuring that new adopters of Web Components used version 1. The reverse origin trial ends with Chrome 87, making Chrome 88 the first in which version 0 is no longer supported. The Web Components v1 APIs replace Web Components v0 and are fully supported in Chrome, Safari, Firefox, and Edge. This removal covers the items listed below.

Google Chrome

Versienummer 88.0.4324.96
Releasestatus Final
Besturingssystemen Windows 7, Linux, BSD, macOS, Windows Server 2012, Windows 8, Windows 10, Windows Server 2016, Windows Server 2019
Website Google
Download https://www.google.com/chrome/
Licentietype Freeware

Door Bart van Klaveren

Downloads en Best Buy Guide

20-01-2021 • 08:44

14

Submitter: pdegroote

Bron: Google

Reacties (14)

14
14
12
0
0
0
Wijzig sortering
performance.measureMemory() Method

Zal dit zorgen voor minder ramverbruik bij meerdere tabbladen _/-\o_
O, gebruiker 5710843 heeft nog 2.3 Mb geheugen over. Nou, dan kan er nog wel een geanimeerde banner onder in het scherm.
:+

[Reactie gewijzigd door Eonfge op 25 juli 2024 02:43]

Alleen als ontwikkelaars het gaan gebruiken om het een en andere te optimaliseren.
Op de desktop is het nog wel te gebruiken met een adblocker, maar de mobiele versie ligt mijlenver achter in vergelijking met Firefox en Vivaldi.
In welk opzicht? Performance, features?
Snelheid vind ik goed. Alleen de advertenties verpesten het voor mij. Als ik bijv. FC Update of Voetbalzone open denk je dat de pagina klaar is en op het moment dat je begint te lezen verschuift het tekstgedeelte omdat er een bewegende advertentie op die plek komt. Firefox en Vivaldi hebben ad en tracker blocking op mobiel waardoor dit zich niet voordoe.t

Qua features hebben ze beide de tabbalk onderaan zodat je makkelijker kunt navigeren met 1 hand. Dat vind ik erg prettig met de steeds groter wordende telefoons.
Firefox heeft collections (gebruik ik niet, maar kan handig zijn in sommige gevallen). Vivaldi heeft speed dials die erg fijn werken.

[Reactie gewijzigd door Roodey op 25 juli 2024 02:43]

Tsja je kan natuurlijk gewoon in Google Chrome ook een ad blocker en andere zaken installeren tegen o.a. tracking, cookies vanuit de Chrome Store en al je problemen zijn opgelost.
Je kan ook nog een pi-hole installeren thuis dan heb je op geen enkel apparaat meer reclame in huis want dan regel je het centraal :)

Edit: Zie dat het ook over mobiel hebt, die addons in Chrome is natuurlijk van toepassing op de Desktop versie (waar het artikel over gaat). Zou dan toch een pi-hole adviseren voor thuis ;)

[Reactie gewijzigd door BaszCore op 25 juli 2024 02:43]

Ik heb het over de mobiele versie. Jij ook?
En ik begrijp dat we op Tweakers zitten, maar niet iedereen is extreem technisch. Ik vind dat het out of the box moet werken. Dat doen (in mijn optiek) Firefox en Vivaldi beter. Ergens ook wel logisch dat Chrome als advertentieverkoper dat niet beter doet.
Het is niet ideaal, maar met ad-blockers die via DNS of "VPN" werken lukt het aardig. (VPN tussen aanhalingstekens, want er wordt geen VPN verbinding opgebouwd. Het is simpelweg een trucje om DNS verkeer af te vangen op je eigen telefoon en vervolgens een andere DNS te gebruiken.)
Ik had deels over de desktop versie inderdaad, dat had ik ook erbij gezet bij de edit. Thuis kan je het probleem omzeilen met een pi-hole, zijn goede instructies voor de te vinden hoe in te richten. Goed de stappen volgen en even tijd voor nemen dan gaat ook de minder technische persoon er vast uitkomen en anders zijn er altijd nog mensen die willen.
Kan hier thuis in ieder geval niet meer zonder een pi-hole, echt een verademing geen reclame in je apps en browser op je telefoon, tablet, computer etc ;) Daar wen je heel snel aan.
Ok, dat is dus een issue met de websites, niet een tekortkoming van Chrome mobile.
Daarnaast, adblockers in een mobile browsers is imo achterhaald, veel efficiënter om het op DNS of OS te doen.
Als iemand dus een http link download heeft geplaatst jaren geleden dan zal dat nu dus niet meer werken begrijp ik?

Hopelijk kunnen ze dan in de volgende Chrome versie die http links die overal op internet forums staan eerst laten vragen naar de https variant. ( http omleiden naar https eventueel pas op verzoek van de gebruiker. )
Er staat een typo in het artikel dingen oegevoegd i.p.v. dingen toegevoegd

Op dit item kan niet meer gereageerd worden.