Software-update: Google Chrome 76.0.3809.87

Google Chrome logo (80 pix) Google heeft versie 76 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. De belangrijkste veranderingen die in versie 76 zijn aangebracht, naast de gebruikelijke bug- en security fixes, zijn hieronder voor je op een rijtje gezet.

Dark mode

Many operating systems now support inverted color schemes with a system setting referred to as ‘dark theme' or ‘dark mode', depending on the system. The prefers-color-scheme media query allows a website or web app to adopt the preferred display mode of the user. What is left out of this is the explanation? For that, read the article titled Hello Darkness, My Old Friend.

Payments API

Over the last few versions of Chrome we've rolled out a number of improvements to the payments APIs. These APIs provide a way to interact with proprietary payment systems without needing to build your own user interactions. Changes in Chrome 75 included replacing hasEnrolledInstrument() with canMakePayment() and removal of languageCode from the billing address. With the detailsPromise option Chrome 75 gives PaymentRequest.show() a means of performing a quick server call before showing payment details to the buyer. Chrome 76 brings three changes to the payment realm. Now implemented are features that allow a merchant website or web app to respond when a user changes payment instruments. Additionally, the PaymentRequestEvent has a new method called changePaymentMethod() and the PaymentRequest object now supports an event handler called paymentmethodchange. You can use both to notify a merchant when the user changes payment instruments. The former returns a promise that resolves with a new PaymentRequest instance. Additionally, Chrome now makes it easier to use the payments APIs for self-signed certificates on the local development environment. To do this, launch Chrome from a command line with the —ignore-certificate-errors flag. For detailed information about these features, read Web Payments Updates.

Install Progressive Web Apps on the desktop with ease

On desktop, there is typically no indication to a user that a Progressive Web App is installable, and if it is, the install flow is hidden within the three dot menu. In Chrome 76, we're making it easier for users to install Progressive Web Apps on the desktop by adding an install button to the omnibox. If a site meets the Progressive Web App installability criteria, Chrome shows an install icon in the omnibox. There is no extra work required from developers. Clicking the button prompts the user to install the PWA.

Control the Add to Home Screen mini-infobar

In Chrome 76, we're giving you control over the add to home screen mini-infobar. Chrome shows the mini-infobar the first time a user visits a site that meets the Progressive Web App installability criteria. Developers want to prevent the mini-infobar from appearing, and provide their own install promotion instead. To do this, listen for the beforeinstallprompt event, and call preventDefault() on it. Then, update your UI to notify the user by adding an install button or other element. Depending on your app, there are several different patterns you can use to promote installation of your PWA. The add to home screen mini-infobar is still a temporary measure. We are experimenting with new UI patterns for giving Progressive Web App users the ability to install, and do this in a way that reduces clutter in the browsing experience.

Updating WebAPKs more frequently

When a PWA is installed on Android, Chrome automatically requests and installs a WebAPK. Chrome periodically checks to see if the manifest has changed, and if a new WebAPK is required. Starting in Chrome 76, Chrome will check the manifest more frequently: checking every day, instead of every three days. If any of the key properties have changed, Chrome will request and install a new WebAPK.

Other features in this release
Animation.updatePlaybackRate

Adds Animation.updatePlaybackRate(), which lets you seamlessly transition the playback rate of an animation such that there is no visible jump in the animation. Current time is preserved at the instance the new playback rate takes effect.

Async clipboard: read and write images

Implements programmatic copying and pasting of images for the Async Clipboard API. This change also updates navigator.clipboard.read() and navigator.clipboard.write() to comply with the specification. Programmatic copying and pasting of images is Chromium's top starred bug.

Escape key is not a user activation

The escape key is no longer treated as a user activation. Browsers prevent calls to abusable APIs (like popup, fullscreen, vibrate, etc.) unless the user activates the page through direct interactions. Not all interactions trigger user activation. For example, clicking on a link or typing in a textbox does, but swiping fingers on a screen or hovering with the mouse cursor does not. Since users never intend to interact with the page through the escape key, it should not trigger user activation.

Fetch Metadata

Introduces a new HTTP request header that sends additional metadata about a request's provenance (is it cross-site, is it triggered from <img>, etc.) to the server to allow it to make security decisions which might mitigate some kinds of attacks based on timing the server's response (XSS leaks and others). For example, it is unlikely that a bank's "Transfer all money" endpoint would be referenced from an <img> tag, and likewise unlikely that evil.com is going to be making any legitimate requests whatsoever. Ideally, the server could reject these requests a priori rather than deliver them to the application backend.

form.requestSubmit()

Adds the form.requestSubmit() function, which requests form submission. It includes interactive constraint validation, dispatches a submit event, and takes a reference to the submitter button.

ImageCapture support for focusDistance constraint

The Image Capture API provides a means to set the focusMode to manual which is not useful if you cannot set the focus distance. This change provides an interface for getting focus range values and setting focus distance value.

Implement Animation.pending

Adds the pending attribute to the Web Animations API. A pending animation is one that is waiting on an asynchronous operation that affects the play state. Adding support for this attribute does not affect the rendering or timing of animations, but simply exposes the signal.

IndexedDB transaction explicit commit API call

Adds a commit() function to IDBTransaction objects, which explicitly marks a transaction as not accepting further requests. Currently, IndexedDB only commits a transaction after all associated requests have had their completion event handlers executed, and no new requests have been queued by the event handlers. Developers can use the explicit commit() function to shave a few event loop cycles off of the latency of their transactions. The primary benefit of explicit commit is that it increases the throughput of read and write requests made on an object store. This is a clear performance benefit in terms of the rate at which operations can be processed. Additionally, the increase in speed is advantageous because it adds stability to IndexedDB by reducing the probability that a disruptive event occurs within the lifetime of a transaction.

JavaScript

DateTimeFormat dateStyle and timeStyle Adds dateStyle and timeStyle options to functions on Intl.DateTimeFormat, specifically formatToParts() and resolveOptions(). These options provide a compact way to request the appropriate, locale-specific date and time of given length styles. Locale sensitive BigInt.prototype.toLocaleString and allow Intl.NumberFormat format/formatToParts to take BigInt. Changes BigInt.prototype.toLocaleString() to locale-sensitive number formatting and changes Intl.NumberFormat.prototype.format() and formatToParts() to accept BigInt as input.

Media capabilities in workers

Enables the Media Capabilities API in all types of workers to help website and web apps pick the best media to stream from a worker. The information can then be used to create the MediaStream from a worker.

Promise.allSettled

Adds Promise.allSettled(), which returns a promise that is fulfilled with an array of promise state snapshots, but only after all the original promises have settled, in other words after it has either resolved or rejected.

Simpler reading methods for Blob interface

Adds three new methods to the Blob interface to perform read operations: text(), arrayBuffer(), and stream().

WebRTC

RTCSctpTransport Exposes information about the SCTP transport that is used to carry WebRTC data channels such as max-message-size and max channels. RTCRtpSender.setStreams Allows changing the association between the track associated with an RTCRtpSender and streams. Stream association causes tracks in the same stream to be synchronized. This is useful, for example, if during a call a user switches from a front-facing camera to a back-facing camera and the application uses RTCRtpSender.replaceTrack(). On the receiving end the new track must be associated with the existing stream and synchronized with its auto track. RTCRtpTransceiver.setCodecPreferences() Adds the setCodecPreferences() method, which overrides the default codec preferences used by the user agent. This allows applications to disable the negotiation of specific codecs. It also allows an application to cause a remote peer to prefer the codec that appears first in the list for sending.

white-space: break-spaces

The white-space:break-spaces value allows authors to specify that any sequence of preserved white space that would otherwise overflow a line and hang (as per the CSS Text Module specification's Trimming and Positioning rules) must be broken.

Removals
Remove feature policy: lazyload

The lazyload feature policy was intended to allow developers to selectively control the lazyload attribute on the <iframe> and <img> tags to provide more control over loading delay for embedded contents and images on a per origin basis. The policy is removed in favor of a newer feature policy for loading, namely loading-frame-default-eager which is more aligned with how the loading attribute will be used. The removal applies to both the Feature-Policy header and the <iframe> allow attribute.

Remove outputs from MediaStreamAudioDestinationNode

According to the specification, the MediaStreamAudioDestinationNode in the Web Audio API should have no outputs. Chrome's implementation has a single output which has been removed.

Remove insecure usage of DeviceMotionEvent

Chromium has been showing deprecation warnings since 2015 whenever the API is used in a non-secure browsing context. Chrome now restricts the API to secure browsing contexts. This change brings Chromium's implementation in line with the privacy and security recommendations in the specification, and is aligned with the effort to deprecate powerful features on insecure origins.

Remove insecure usage of DeviceOrientationEvent
Chromium has been showing deprecation warnings since 2015 whenever the API is used in a non-secure browsing context. Chrome now restricts the API to secure browsing contexts. This change brings Chromium’s implementation in line with the privacy and security recommendations in the specification, and is aligned with the effort to deprecate powerful features on insecure origins.

Google Chrome

Versienummer 76.0.3809.87
Releasestatus Final
Besturingssystemen Windows 7, Linux, macOS, Windows 8, Windows 10
Website Google
Download https://www.google.com/chrome/
Licentietype Freeware

Door Bart van Klaveren

Downloads en Best Buy Guide

02-08-2019 • 11:00

15

Submitter: mikeoke

Bron: Google

Reacties (15)

15
15
4
1
1
8
Wijzig sortering
Wil je je "https://" en "www" terug in je adres balk, zet dan even de volgende flag naar 'Disabled':

chrome://flags/#omnibox-ui-hide-steady-state-url-trivial-subdomains
Had ik ook gedaan, maar lost het helaas niet op. Lijkt wel alsof ze het compleet willen blokkeren, zelfs voor power users.
Hm raar, bij mij werkt het probleemloos.

Je moet wel daarna even je browser herstarten :)
Zag een reactie op het nieuwsbericht nieuws: Google haalt www en https weg uit adresbalk in Chrome 76 dat als je alles met 'hide' op disabled zet het wel werkt :)
Waardeloze setting. Bedankt voor het posten, meteen aangepast na mijn update. Straks een zoeken of dit ook via een GPO kan, zodat je dit gemakkelijk via de registry kan doorvoeren.

Of misschien heel misschien wordt dit mee gesynct met de chrome settings,
Net gedaan.
Dank u.
Ik heb ene BUG ontdekt. Het blijft een gedoe met dat sync van Chrome.

Ik gebruik 1 Google account om alles te syncen. (naam: SYNCALEX)
Alle passwords extensies en bookmarks werden keurig gesynct. Verder doe ik niks met dat account.

Ik gebruik een 2e Google account naam: WERKALEX (en nog wat andere) om in te werken. Gebruik Google ads, mijnbedrijf, analytics, TaGmanager, Drive etc etc etc.

Als je nu in Chrome (het programma) inlogt met SYNCALEX komt alles weer keurig terug in mijn browser maar..........mijn standaard Gmail acount is nu ook dat 1ste Google account SYNCDATA.

Iedere keer als ik een nieuwe TABBLAD open is het weer SYNCALEX wat ik zie in mijn browser.

Tuurlijk kan je wel weer inloggen met WERKALEX maar hoppa het nieuwe tabblad is weer mijn 1ste SYNCALEX account.

Concreet heb ik alles al gedaan want er zijn wel wat aanpassingen geweest sinds Rel. 70. Je kan instellen dat hij niet meet automatisch inlogt etc etc maar niks werkt.

Het is echt een prbleem en een bug OF WEET er iemand een fix of iets dergelijks.

Dank je wel.

Ik wilde over naar Brave maar die kent nog geen passwords sync en ik wil een plek hebben voor mijn logins en passwords.
Even korte vraag: switch je wel van account met de chrome browser (links bovenin)? en dan nog blijf je ingelogt onder het andere profiel?

Ik switch ook dagelijks van Chrome browser profiel (Prive/Werk) zonder problemen. Zelfs alle chrome extensies switches naadloos mee.
Ja voor de reinstall en upgrade werkte ik ook zo. Alles ging perfect. Extensies, bookmarks etc.

Ik was dus ingelogd in Chrome met mijn DATA profiel/account en in de browser was ik onder Goolge/Gmail/TAG manager/Analytics/ToyTube etc etc ingelogd onder WERKDATA. Ik switste zelfs tussen vele Google accounts van verschillende bedrijven.

Mijn Chrome profiewl en login bleef dus DATA.

Nu is het zo dat hij het DATA profiel altijd start bij een nieuw TABblad of als ik Chrome opstart.

Je kan dus niet inloggen in de Chrome browser en syncen en dan ook andere Google/Gmail accounts/diensten meer standaard gebruiken. Hij springt altijd naar het SYNC account!

Natuurlijk heb ik dit https://www.ghacks.net/2018/09/08/disable-the-sign-out-link-between-chrome-gmail-and-other-google-services/ ook al getest. Dit was na aanleiding van de Chrome 70 update dat je automatisch inlogde op Chrome als je een Google dienst ging gebruiken.

Ik probeerde te downgraden naar Chjrome 75, maar duie update vanzelf :(
Het lijkt er op dat je het verkeerd gebruikt en/of het principe van sync in Chrome en het principe van Google accounts niet helemaal snapt. Een Google account hebben om alles te syncen en een Google account hebben om in te werken slaat nergens op in de context van sync in Chrome. Beide accounts staan helemaal los van elkaar. Dus als je ingelogd bent in Chrome in je werk account heb je niets aan de data in je sync account en andersom. Zie het als twee volledig aparte eilanden.

Dat je als je in Chrome ingelogd bent met je sync account en vervolgens in je werk account gaat inloggen (via google.com) heeft geen consequencies voor Chrome en de gesynchroniseerde data in Chrome. Hij blijft dan gewoon je sync account als standaard zien (want je bent immers in Chrome ingelogt in je sync account en niet in je werk account).

Normaliter is het logischer accounts in Chrome te gebruiken op basis van persona (je echte identiteit en fake identiteiten), persoon (account van Piet/Klaas/Brenda etc.) of op basis van werk en prive. Maar niet op basis van werk en data sync.
Hoe schakel je tussen de accounts? Ben je met 1 account ingelogd en log je daarna in met het andere? Of log je eerst uit voordat je met het andere inlogt?

Bedenk dat Google er nogal zijn/haar best voor doet om zo veel mogelijk zaken te combineren en coreleren. Zoals je contact informatie van meerdere bronnen binne google combineert omdat ze bijvoorbeeld een zelfde telefoonnummer hebben, zo ga ik er bij google van uit dat ze ook de verschillende google accounts combineert.

Daarnaast: De wachtwoorden vertrouw ik zo min mogelijk aan google to, daar heb ik een andere wachtwoord manager voor. Vooral omdat ik dat dan ook tussen chrome, chromium en firefox kan schakelen.

TIP: Log eens in bij een google-dienst zoals gmail. Dan zie je in de chrome balk het chrome ingelogde account en daar onder het google ingelogde account. Klik je op de onderste, dan zie je mogelijk al je andere (gekoppelde) accounts.

[Reactie gewijzigd door beerse op 24 juli 2024 17:44]

Hi DJ_ryow, dank je wel voor je reactie.

Ik wil 1 sync account voor extensies/passwords/bookmarks. Die log in in op de Chrome browser.
Bijnnen dat Sync proefiel grbuik ik niks van de google diensten.

Ik gebruik 1 WERKDATA Google account. Daarmee doe ik surfen, browsen, shoppen. Ik maak dus bijvoorbeeld een account op Binance dan word de login en password opgeslagen in het SYNC DATA Chrome login account.

Stel ik log via google.nl in op een ander account, dat maakt niet uit want als ik dan weer naar Binance ga om in te loggen dan onthoud de Chrome Browser Profiel mijn login en hoppa ingelogd.

Zo heeft het altijd gewerkt. Chrome Profiel die synct en onthoud de logins ongeacht in welke google.nl je bent ongelogd.

De situatie is dus nu dat een Chrome proefiel Sync login automatisch ook de startpage wordt van Google.nl

Ik hoop dat het wat duidelijker is zo. Ik ben echt Google Fan mede omdat ik veel SEO dingetjes doe en dan heb je ze gewoon nodig. Het privacy "gedoe" neem ik op de koop mee.
Bedankt voor je uitleg, het is een stuk duidelijker nu. Ik hoop dat een ander hiermee kan helpen. Het lijkt een feature, niet een bug.
Voor de mensen die darkmode willen hebben met Chrome op Android, dat kan. Doe het volgende:
  • Open Chrome op je Android-toestel
  • Typ in de adresbalk: chrome://flags#enable-android-night-mode
  • Zet hem op Enabled en herstart Chrome
  • Ga naar Instellingen, tik op Thema
*Mocht Thema niet tussen staan nadat je dit toegepast hebt, sluit en open Chrome een paar keer totdat Thema ertussen staat."
Nu alleen nog een keer zorgen dat Tweakers support krijgt voor een dark theme. Hier wordt al jaren om gevraagd, maar krijgt helaas maar geen prioriteit. Vooral bij 's avonds lezen zou het erg fijn zijn.

Op dit item kan niet meer gereageerd worden.