{"id":161339,"date":"2026-02-16T23:11:54","date_gmt":"2026-02-16T21:11:55","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/vypusk-chrome-145"},"modified":"2026-02-16T23:11:54","modified_gmt":"2026-02-16T21:11:55","slug":"vypusk-chrome-145","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-chrome-145","title":{"rendered":"Release of Chrome 145","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>Google has released version 145 of the Chrome web browser. The stable release of the free project Chromium, which serves as the foundation for Chrome, is also available. Chrome differs from Chromium in its use of Google logos, the presence of a crash reporting system, modules for playing protected video content (DRM), an automatic update installation system, continuous Sandbox isolation, the provision of keys to the Google API, and the transmission of RLZ parameters during searches. For those who need more time to update, an Extended Stable branch is separately maintained, supported for 8 weeks. The next Chrome release, version 146, is scheduled for March 10.       <\/p>\n<p>Key changes in Chrome 145:  <\/p>\n<ul>\n<li class=\"l\"> Support for the JPEG XL image format has been added, utilizing the jxl-rs library that implements JPEG-XL in Rust. JPEG XL support is currently disabled by default and requires activation via the parameter 'chrome:\/\/flags\/#enable-jxl-image-format'.\n<li class=\"l\"> Development of the AI mode continues, allowing interaction with an AI agent from the address bar or from the page displayed when opening a new tab. The AI mode enables users to ask complex questions in natural language and receive answers based on aggregating information from the most relevant pages on the given topic. If necessary, users can clarify information with follow-up questions. The mode also allows questions about the content of the page directly from the address bar. In Chrome 145, the AI mode is implemented in the versions for Android and iOS platforms. For users in Canada, India, and New Zealand, the Gemini chatbot has begun to be enabled by default (when using English).\n<li class=\"l\"> A mechanism called DBSC (Device Bound Session Credentials) has been introduced, allowing authentication sessions on the site to be tied to a specific device, complicating attacks from other systems that involve intercepted session cookies. To create a device-bound session, the HTTP header 'Secure-Session-Registration' has been proposed. The protection method involves providing a pair of cryptographic keys tied to the current device, generated during connection and stored in the TPM (Trusted Platform Module). The session uses cookies with a short lifespan, which are periodically updated using the private key and can be verified with the public key.    <center><img decoding=\"async\" alt=\"Release of Chrome 145\" src=\"\/wp-content\/uploads\/2026\/02\/d14da7388a2dad349005354873e17e53.png\" style=\"display:block;margin: 0 auto;\" \/><\/center>\n<li class=\"l\"> The option to disable the enforcement of browser extensions that violate minor rules of the Chrome Web Store directory has been removed. Minor violations include the presence of potential vulnerabilities, imposing the extension without user consent, manipulating metadata, violating user data handling rules, and misleading users about functionality.\n<li class=\"l\"> In the version for the Android platform, when the Advanced Protection Mode (AAPM) is activated, the JavaScript API WebGPU is disabled. Websites using WebGPU for rendering 3D content (e.g., Google Maps) may utilize slower alternatives like WebGL (which tests show to be 5.78% slower). To determine the disabling of WebGPU, the property navigator.gpu can be used.\n<li class=\"l\"> In the Android version, when the Enhanced Safe Browsing feature is enabled, local analysis of the appearance of pages for signs of fraud is implemented. If the local check raises suspicions of dubious content, an additional verification on Google servers is performed, and if confirmed, a warning is issued to the user.\n<li class=\"l\"> The Origin API has been added, providing an Origin object that implements the Web Origin concept and offers methods for comparing, serializing, and parsing Web Origin. The term 'Web Origin' is defined in RFC 6454 to separate boundaries of isolation and trust for content. Web Origin encompasses part of the URL that includes the protocol name, host name, and port number (for example, https:\/\/opennet.ru). The new API has been introduced to unify operations on Web Origin in order to eliminate vulnerabilities due to incorrect comparisons of serialized ASCII representations of Web Origin when determining resource ownership on the same site.\n<li class=\"l\"> Access rights to the local system have been separated when interacting with public websites. Requests from the site to <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/lir\/ipv4\/\"   title=\"IP addresses\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"4464\">IP addresses<\/a> the local network (intranet or internal addresses) and the loopback interface (127.0.0.0\/8) are now processed using different privileges (local-network and loopback-network), requiring user confirmation in a special dialog for the operation. The protection measures apply to attempts to load resources, fetch() requests, and iframe insertions. Access to internal resources is exploited by attackers to carry out CSRF attacks on routers, access points, printers, corporate web interfaces, and other devices and services that only accept requests from the local network. Additionally, scanning internal resources can be used for indirect identification or gathering information about the local network.\n<li class=\"l\"> The UserAgentReduction setting has been removed, which allowed the return of untrimmed information in the HTTP 'User-Agent' header and in the JavaScript parameters navigator.userAgent, navigator.appVersion, and navigator.platform. The browser now always sends a shortened version of the User-Agent without detailed platform information (for example, 'Android 16; S' instead of 'Android 16; SM-A205U').\n<li class=\"l\"> The built-in PDF viewer has been enhanced with the ability to save documents to Google Drive. In Google Drive, documents from Chrome are saved in the 'Saved from Chrome' folder.\n<li class=\"l\"> The LayoutShift API, which allows tracking changes in the position of DOM elements on the screen, has been modified to output information in CSS pixels instead of screen pixels. CSS pixels take the screen DPI into account and appear visually consistent across all screens, including high-density pixel monitors. This change was made to align Chrome's behavior with that of other browsers.\n<li class=\"l\"> The API Controlled Frame implements the WebRequest.SecurityInfo method, allowing web applications to intercept HTTPS, WSS, or WebTransport requests to the server, obtaining a snapshot of the certificate. <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/dts-los-angeles\/\"   title=\"server\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"4009\">server<\/a> and use it for manual verification of the certificate used for direct connections to the same server via TCP\/UDP.\n<li class=\"l\"> Support has been added for the CSS properties column-wrap and column-height, defined in the CSS Multi-column Layout 2 specification. The column-wrap property allows columns to move to a new line instead of horizontal scrolling when the columns do not fit within the height specified by column-height.\n<li class=\"l\"> The CSS property text-justify has been added, allowing you to specify the type of text alignment when using 'text-align: justify';\n<li class=\"l\"> In the CSS properties letter-spacing and word-spacing, it is now allowed to specify the spacing size in percentages.\n<li class=\"l\"> The JavaScript objects Map and WeakMap implement the 'upsert' specification, simplifying working with collections of key\/value pairs. New methods getOrInsert and getOrInsertComputed have been added, which return the existing value associated with the specified key in the collection, or create a new entry if the key is not found.\n<li class=\"l\"> The IndexedDB API implementation has been rewritten using the SQLite database as a backend (the previous implementation was based on LevelDB in separate files). The new version is currently used only in contexts hosted in memory, for example, it is applied in incognito mode.\n<li class=\"l\"> Improvements have been made to the tools for web developers. In the network inspection interface, the 'Request conditions' panel now includes the ability to throttle individual network requests by default.              <\/ul>\n<p>In addition to new features and bug fixes, the new version addresses 11 vulnerabilities. Many of the vulnerabilities were identified through automated testing using AddressSanitizer, MemorySanitizer, Control Flow Integrity, LibFuzzer, and AFL. No critical issues allowing circumvention of all browser protection levels and execution of code in the system outside the sandbox environment were found. As part of the vulnerability reward program for this release, Google has established 11 awards and paid out $18,500 (including one award of $8000, $5000, $2000, and $500, and three awards of $1000). The amounts for 4 rewards have yet to be determined.<br \/>\n<br \/>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=64807\">opennet.ru<\/a> <\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Google \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043b\u0430 \u0440\u0435\u043b\u0438\u0437 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 Chrome 145. \u041e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 Chromium, \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0435\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u043e\u0439 Chrome. \u0411\u0440\u0430\u0443\u0437\u0435\u0440 Chrome \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f \u043e\u0442 Chromium \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043b\u043e\u0433\u043e\u0442\u0438\u043f\u043e\u0432 Google, \u043d\u0430\u043b\u0438\u0447\u0438\u0435\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u043a\u0440\u0430\u0445\u0430, \u043c\u043e\u0434\u0443\u043b\u044f\u043c\u0438 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u043e\u0433\u043e \u043e\u0442 \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u0438\u0434\u0435\u043e\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 (DRM), \u0441\u0438\u0441\u0442\u0435\u043c\u043e\u0439 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439, \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u043c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u043c Sandbox-\u0438\u0437\u043e\u043b\u044f\u0446\u0438\u0438, \u043f\u043e\u0441\u0442\u0430\u0432\u043a\u043e\u0439 \u043a\u043b\u044e\u0447\u0435\u0439 \u043a Google API \u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435\u0439 RLZ-\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":8,"featured_media":161340,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[702],"tags":[],"class_list":["post-161339","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Google \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043b\u0430 \u0440\u0435\u043b\u0438\u0437 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 Chrome 145. \u041e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 Chromium, \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0435\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u043e\u0439 Chrome.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Erik Peterson\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-chrome-145\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u0412\u044b\u043f\u0443\u0441\u043a Chrome 145 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Google \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043b\u0430 \u0440\u0435\u043b\u0438\u0437 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 Chrome 145. \u041e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 Chromium, \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0435\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u043e\u0439 Chrome.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-chrome-145\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-02-16T21:11:55+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-02-16T21:11:55+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47 Release of Chrome 145 | ProHoster","description":"Google has released version 145 of its web browser, Chrome. At the same time, a stable release of the open-source project Chromium, which serves as the foundation for Chrome, is also available.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-chrome-145","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u0412\u044b\u043f\u0443\u0441\u043a Chrome 145 | ProHoster","og:description":"\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Google \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043b\u0430 \u0440\u0435\u043b\u0438\u0437 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 Chrome 145. \u041e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 Chromium, \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u044e\u0449\u0435\u0433\u043e \u043e\u0441\u043d\u043e\u0432\u043e\u0439 Chrome.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-chrome-145","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2026-02-16T21:11:55+00:00","article:modified_time":"2026-02-16T21:11:55+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"161339","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-02-22 15:33:36","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2026-02-16 21:11:56","updated":"2026-02-22 15:33:36","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/161339","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=161339"}],"version-history":[{"count":2,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/161339\/revisions"}],"predecessor-version":[{"id":164342,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/161339\/revisions\/164342"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media\/161340"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=161339"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=161339"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=161339"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}