{"id":115155,"date":"2024-04-18T14:30:07","date_gmt":"2024-04-18T12:30:10","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/vypusk-web-brauzera-chrome-124"},"modified":"2024-04-18T14:30:07","modified_gmt":"2024-04-18T12:30:10","slug":"vypusk-web-brauzera-chrome-124","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-web-brauzera-chrome-124","title":{"rendered":"Release of web browser Chrome 124","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>Google has released version 124 of the Chrome web browser. Simultaneously, a stable release of the open-source project Chromium, which serves as the basis for Chrome, is available. Chrome differs from Chromium by using Google logos, having a crash-reporting system, modules for playing DRM-protected video content, an automatic update installation system, constant enabling of Sandbox isolation, provision of keys to Google APIs, and transmitting RLZ parameters during searches. For those who need more time to update, an Extended Stable branch is separately maintained, accompanied by 8 weeks of support. The next Chrome release, version 125, is scheduled for May 14.     <\/p>\n<p>Key changes in Chrome 124:  <\/p>\n<ul>\n<li class=\"l\"> In the Android version, the bookmark manager has added support for saving bookmarks and reading list items linked to the user's Google account. <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/dts-gdansk\/\"   title=\"servers\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"4511\">servers<\/a> In Chrome for Android, a new method of storing local passwords has been implemented, which will not sync with other devices. Previously, local passwords were stored in the Chrome profile, but now they will be housed in the password storage provided by the Google Play services, which is already used for storing the Google account password.\n<li class=\"l\"> In builds for Windows, macOS, and Linux, support for the Key Encapsulation Mechanism (KEM) in TLS is enabled by default, utilizing the hybrid algorithm X25519Kyber768, which is resilient to brute-force attacks by quantum computers. X25519Kyber768 is a combination of the X25519 key exchange mechanism, based on elliptic curves and currently used in TLS, with the Kyber-768 algorithm, utilizing cryptographic methods based on solving lattice problems, with solution times that do not differ on classical and quantum computers.\n<li class=\"l\"> When rendering text, the Skia library takes into account the contrast and color settings defined in Windows for the ClearType text smoothing technology, which significantly improves font display quality on LCD monitors. The fonts used in the interface for Linux have also changed significantly.\n<li class=\"l\"> The ability to install any web page as a standalone PWA app (Progressive Web Apps) has been provided, even if that page does not meet PWA criteria.    <center><img decoding=\"async\" alt=\"Release of web browser Chrome 124\" src=\"\/wp-content\/uploads\/2024\/04\/1fa0dbca55094444d3edeb05acdf3b81.png\" style=\"display:block;margin: 0 auto;\" \/><\/center>\n<li class=\"l\">  The feature to install any web page as a self-contained PWA application (Progressive Web Apps) is available, even if that page does not meet PWA criteria.\n<li class=\"l\"> In accordance with the requirements of the European DMA (Digital Markets Act), a dialog has been implemented to select the search engine that will be used by default. The search engines available can be found in the settings section at chrome:\/\/settings\/search. The search engines in the list are displayed in random order. In Chrome 120, this dialog was tested on 1% of users and is now activated for all.    <center><img decoding=\"async\" alt=\"Release of web browser Chrome 124\" src=\"\/wp-content\/uploads\/2024\/04\/76a736f59a6eaa1d8aeacc362ac31063.png\" style=\"display:block;margin: 0 auto;\" \/><\/center>\n<li class=\"l\"> A permission request has been implemented for users when a web application accesses the Web MIDI API, allowing interaction with connected MIDI musical devices. Previously, permission requests were only displayed during the sending or receiving of SysEx messages; now they will appear for any access to the Web MIDI API. The reason for this change includes situations where random web pages seize exclusive control of a MIDI controller, blocking the ability for other applications to function with it. Security issues are also noted, as the Web MIDI API allows total control over a MIDI device, including uploading custom firmware.\n<li class=\"l\"> Full support for the Web SQL API has been discontinued, as it is not standardized, rarely used, and requires revision to meet modern security standards. Web SQL was disabled by default starting from Chrome 119, but there was an option to enable it. This setting has now been removed. Developers who require similar functionality are advised to use a version of the SQLite library compiled to WebAssembly.\n<li class=\"l\"> A feature has been added to control the writing direction of text displayed vertically in web form elements (select, meter, progress, button, textarea, and input) when vertical orientation is chosen through the CSS property writing-mode. To output text from top to bottom, the element property 'ltr' can now be used, and for bottom to top \u2014 'rtl'.\n<li class=\"l\"> In the API User-Agent Client Hints, developed as a replacement for the User-Agent header, support for the Sec-CH-UA-Form-Factors parameter has been added. This allows the client to inform the server about the user's device form factor (Desktop, Automotive, Mobile, XR, EInk, and Watch). User-Agent Client Hints enables selective delivery of data regarding specific browser and system parameters (version, platform, etc.) only upon request. <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/dts-prohoster\/\"   title=\"proxy server\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"2999\">proxy server<\/a>The user, in turn, can determine what information may be shared with website owners. When using User-Agent Client Hints, the browser identifier is not transmitted without explicit request, and by default, only basic parameters are indicated, making passive identification more difficult.\n<li class=\"l\"> A feature has been added to control the cloning of individual roots in the Shadow DOM, performed by commands like cloneNode(). The ability to clone root branches of the DOM is enabled through the clonable parameter ('attachShadow({clonable:true})') or the 'shadowrootclonable' attribute ().     <center>  <div class=\"youtube-placeholder\" data-id=\"Io5d28IETrg\" onclick=\"loadVideo(this)\">\r\n        <img decoding=\"async\" src=\"https:\/\/img.youtube.com\/vi\/Io5d28IETrg\/hqdefault.jpg\" alt=\"Play video\" loading=\"lazy\" width=\"480\" height=\"360\" style=\"width:100%;height:auto;\">\r\n        <div class=\"play-button\"><\/div>\r\n    <\/div><\/center>\n<li class=\"l\"> New methods setHTMLUnsafe() and parseHTMLUnsafe() have been introduced for using the Shadow DOM syntax from JavaScript. The setHTMLUnsafe() and parseHTMLUnsafe() methods, similar to innerHTML and DOMParser.parseFromString(), allow for injecting content into an element or parsing it in HTML format, but differ in their support for handling template elements with the shadowrootmode attribute.\n<li class=\"l\"> Support for the WebSocket Stream API has been added, enabling the transfer of data between the browser and server in a streaming mode without polling, which is optimal for the transmission and reception of continuously incoming data, such as in chat implementations. const wss = new WebSocketStream(WSS_URL); const {readable, writable} = await wss.opened; const reader = readable.getReader(); const writer = writable.getWriter(); while (true) { const {value, done} = await reader.read(); if (done) { break; } const result = await process(value); await writer.write(result); }\n<li class=\"l\"> The capabilities of the View Transitions API have been expanded, simplifying the creation of transition animation effects between different states of the DOM (for example, a smooth transition from one image to another). The new version adds support for the 'pageswap' event, generated for the 'window' object when the associated 'document' object is replaced during navigation. Also added is the 'render-blocking' property, which allows blocking the rendering of the document until important content parsing is complete.\n<li class=\"l\"> A disallowReturnToOpener parameter has been added, which is passed when invoking the requestWindow method that allows the removal of the 'back' button in a window opened in 'picture-in-picture' mode, preventing a return to the tab from which the window was opened.\n<li class=\"l\"> The ability to assign a NULL value to the CSSImportRule.styleSheet attribute has been added to indicate the absence of a linked stylesheet. A CSSKeyframesRule.length attribute has been added, which indicates the number of indexed properties.\n<li class=\"l\"> An attribute 'writingsuggestions' for editable fields has been implemented to control the display of suggestions during input.\n<li class=\"l\"> Support for ServiceWorker and SharedWorker has been added to the WebGPU API.\n<li class=\"l\"> Support for the HTTP header 'Priority' has been added, through which information about the priority of request processing (RFC 9218) can be conveyed at the initial resource access stage.\n<li class=\"l\"> Improvements have been made to the developer tools. A new Autofill panel has been added to inspect information used in auto-filling forms.   <center><img decoding=\"async\" alt=\"Release of web browser Chrome 124\" src=\"\/wp-content\/uploads\/2024\/04\/4d1364845bf0bbcb283816c15f5f3037.png\" style=\"display:block;margin: 0 auto;\" \/><\/center>\n<p>The CSS styles inspection panel has improved support for nested styles. In the performance measurement panel, the ability to hide unnecessary functions and their related child calls has been provided to reduce noise on the graph. Support for scroll-driven animation has been added to the animation debugging panel. In the network inspection panel, the ability to set packet loss parameters and network queue size has been implemented to test the performance of WebRTC applications under network issues.  <center><img decoding=\"async\" alt=\"Release of web browser Chrome 124\" src=\"\/wp-content\/uploads\/2024\/04\/4834bbb6787d5ec237c88147105d46a7.png\" style=\"display:block;margin: 0 auto;\" \/><\/center>    <\/ul>\n<p>In addition to new features and bug fixes, the latest version resolves 22 vulnerabilities. Many of the vulnerabilities were identified through automated testing tools such as AddressSanitizer, MemorySanitizer, Control Flow Integrity, LibFuzzer, and AFL. No critical issues have been found that would allow bypassing all browser security levels and executing code in the system outside the sandbox environment. As part of the vulnerability reward program for the current release, Google has paid out 13 rewards totaling $65,000 (one reward of $20,000, one of $10,000, one of $7,000, and one of $2,000; three rewards of $5,000 and $3,000; two rewards of $1,000). The amount of one reward has not yet been determined.<br \/>\n<br \/>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=61019\">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 124. \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 \u043f\u0440\u0438 [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":115156,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[702],"tags":[],"class_list":["post-115155","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.2 - 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 124. \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=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-web-brauzera-chrome-124\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.2\" \/>\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 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 Chrome 124 | 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 124. \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-web-brauzera-chrome-124\" \/>\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=\"2024-04-18T12:30:10+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-04-18T12:30:10+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\udd47Release of the Chrome web browser 124 | ProHoster","description":"Google has released version 124 of the Chrome web browser. The stable release of the free Chromium project, which forms the basis of Chrome, is also available.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-web-brauzera-chrome-124","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 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 Chrome 124 | 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 124. \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-web-brauzera-chrome-124","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":"2024-04-18T12:30:10+00:00","article:modified_time":"2024-04-18T12:30:10+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"115155","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-09 21:58:19","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2026-01-22 22:35:19","updated":"2026-02-09 21:58:19","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\/115155","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=115155"}],"version-history":[{"count":2,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/115155\/revisions"}],"predecessor-version":[{"id":164389,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/115155\/revisions\/164389"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media\/115156"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=115155"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=115155"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=115155"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}