{"id":114455,"date":"2024-03-20T18:25:49","date_gmt":"2024-03-20T16:25:51","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/vypusk-web-brauzera-chrome-123"},"modified":"2024-03-20T18:25:49","modified_gmt":"2024-03-20T16:25:51","slug":"vypusk-web-brauzera-chrome-123","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-web-brauzera-chrome-123","title":{"rendered":"Release of web browser Chrome 123","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>Google has released version 123 of the Chrome web browser. At the same time, a stable release of the free project Chromium, which forms the basis of Chrome, is available. Chrome differs from Chromium in that it uses Google logos, has a notification system in case of crashes, includes modules for playing copy-protected video content (DRM), has an automatic update installation system, always has Sandbox isolation enabled, provides keys to the Google API, and transmits RLZ parameters during searches. For those who need more time for updates, an Extended Stable branch, which is supported for 8 weeks, is available. The next version, Chrome 124, is scheduled for April 16.     <\/p>\n<p>Key changes in Chrome 123:  <\/p>\n<ul>\n<li class=\"l\"> On the page shown when opening a new tab, a new section is offered where links from tabs recently opened on other devices linked to the same Google account are displayed.      <center><img decoding=\"async\" alt=\"Release of web browser Chrome 123\" src=\"\/wp-content\/uploads\/2024\/03\/d7f3cc46f56438081c954320944696af.png\" style=\"display:block;margin: 0 auto;\" \/><\/center>\n<li class=\"l\"> Support for content encoding using the Zstandard (zstd) compression algorithm has been added, in addition to the previously supported gzip, brotli, and deflate algorithms.\n<li class=\"l\"> The implementation of the free video codec Theora, created by the Xiph.org Foundation based on the VP3 codec and supported in Firefox and Chrome since 2009, has been removed, but is not supported in Chrome for Android or browsers based on WebKit, such as Safari. The reason for discontinuing support for Theora includes concerns that the implementation may have vulnerabilities similar to the recent critical issues with the VP8 encoder due to its complex binary data parsing logic and stream decoding. Developers believe that due to the increase in 0-day attacks on media codecs, the associated security risks outweigh the demand for the Theora codec, which is rarely used in practice but remains a significant target for potential attacks.\n<li class=\"l\"> The gradual increase in the percentage of users for whom support for third-party cookies, set when accessing websites other than the current page's domain, has been discontinued continues. Such cookies are used to track user movements across sites in the code of advertising networks, social media widgets, and web analytics systems. The changes are being promoted as part of the Privacy Sandbox initiative, aimed at reaching a compromise between users' need for privacy and the desire of advertising networks and websites to track visitor preferences. The phasing out of third-party cookies is planned to gradually expand and reach 100% by the third quarter of 2024. A configuration setting is available at &#171;chrome:\/\/flags\/#test-third-party-cookie-phaseout&#187; to disable it without waiting for external changes.\n<li class=\"l\"> For a small percentage of users in the US, support for features utilizing machine learning has been enabled, including smart tab grouping, theme generator, and interactive assistant, as announced in the Chrome 121 release. For systems with centralized configuration management, an administrator can enable AI tools at the policy level without needing to activate experimental mode.\n<li class=\"l\"> Support for versions prior to Chrome 82 has been discontinued in the settings synchronization service for preferences, history, and bookmarks (Chrome Sync).\n<li class=\"l\"> When enhanced browser protection (Safe Browsing &gt; Enhanced protection) is enabled, information about websites' requests for extended permissions is sent to Google. Such pages are checked against an external database of malicious content, and in the event of a match, the user is immediately shown a warning. Telemetry about users dismissing warnings displayed before opening pages blacklisted by Google is also sent.\n<li class=\"l\"> Google has published an article explaining the methods used to check the security of pages opened by users against a database of malicious content hosted externally. <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/dts-dronten\/\"   title=\"server\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"2609\">server<\/a>To preserve privacy when checking user-opened URLs, only partial hashes of the URLs are sent to Google, specifically the prefix with the first 4 bytes of the hash. <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/dts-newyork\/\"   title=\"server\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"2657\">server<\/a> This prefix is checked against the database of malicious pages, and if there is a match, a list of corresponding full hashes is returned to the user's browser, where a final verification with the complete 32-byte URL hash is performed. To prevent the request from being associated with the user's IP address, the hash prefix is initially sent to an intermediate proxy, which forwards the request to the Safe Browsing system server on its behalf.    <center><img decoding=\"async\" alt=\"Release of web browser Chrome 123\" src=\"\/wp-content\/uploads\/2024\/03\/4c1ac68229fef1ebc428bd8e404fb5f2.png\" style=\"display:block;margin: 0 auto;\" \/><\/center>\n<li class=\"l\"> Warnings are now displayed in the web developer tools console when a request is sent from the page to the internal network (192.168.x.x, 10.x.x.x, etc.) if such requests are made outside a secure context and have not passed a pre-check. Before actually sending a request initiated by the site to a resource in the internal network, the browser will first send a pre-test request and check if the server returns the HTTP header 'Access-Control-Allow-Private-Network: true', which allows access to the intranet. If access is not permitted, it indicates an attempt to access an internal service improperly, which may signal an attempt to attack resources in the local network through the browser (for example, an attacker may inject a request to the web interface of a home router in an iframe, like ''). In Chrome 130, this warning is set to be replaced with an error message, blocking unchecked requests.\n<li class=\"l\"> Chrome for Android and iOS has added the ability to continue browsing sites previously opened on other devices connected to the same Google account.\n<li class=\"l\"> In Chrome for Android, the method of storing local passwords that do not sync with other devices has been changed. Previously, local passwords were stored in the Chrome profile, but now they will be moved to the password storage provided by Google Play services, which is already used to store passwords for the Google account. In Chrome 123, the new storage mode is activated for users without local passwords, and in Chrome 124 it will be applied to users with local passwords.\n<li class=\"l\"> An API for static routing of Service Workers has been added, which allows excluding the execution of JavaScript and interception by Service Workers when requesting resources that meet specified conditions. In other words, the API allows you to determine how specific resources should be loaded and disable the call to the Service Worker for resources that can be retrieved from the cache or loaded directly. URL patterns, request methods, content types (document, embed, font, video, etc.), and execution status ('running', 'not-running') can be used as criteria for decision making. For instance, to send a POST request with data from a web form directly, without invoking the Service Worker, you can specify: addEventListener('install', (event) =&gt; { event.addRoutes({ condition: { urlPattern: '\/form\/*', requestMethod: 'post' }, source: 'network' }); });\n<li class=\"l\"> The CSS function light-dark() has been added to adapt the color scheme to light or dark mode settings. The function can take two values that will be chosen based on the light or dark mode. For example, 'background-color: light-dark(lime, green);'.\n<li class=\"l\"> The Long Animation Frames API has been introduced for diagnosing the responsiveness of website interfaces and identifying bottlenecks during rendering.\n<li class=\"l\"> The media query &#171;display-mode&#187; has added support for the value &#171;picture-in-picture&#187;, allowing the creation of CSS rules applicable only when the web application is displayed in &#171;picture in picture&#187; mode.       @media all and (display-mode: picture-in-picture) {       body {         margin: 0;       }       h1 {         font-size: 0.8em;       }      }\n<li class=\"l\"> The CSS property &#171;align-content&#187; has implemented support for block containers and table cells. For example, &#171;display: block&#187;, &#171;display: list-item&#187;, and &#171;display: table-cell&#187; can now be aligned using &#171;align-content&#187;.\n<li class=\"l\"> A new CSS property &#171;field-sizing&#187; has been added, allowing the size of form elements to depend on their content, such as automatically increasing the size of a text field as data is entered.\n<li class=\"l\"> The JavaScript interface NavigationActivation has added the parameter navigation.activation, which reflects the activation state of the document (for example, it can identify that the document has been restored from cache after pressing the navigation buttons &#171;forward&#187; or &#171;backward&#187;). This parameter can be used to adjust the page content based on where the user arrived from, such as displaying different animations if the user came from the homepage.\n<li class=\"l\"> Improvements have been made to the web development tools.     <\/ul>\n<p>In addition to new features and bug fixes, the latest version addresses 12 vulnerabilities. Many of these vulnerabilities were identified through automated testing using tools like AddressSanitizer, MemorySanitizer, Control Flow Integrity, LibFuzzer, and AFL. No critical issues were found that would bypass all browser security levels and execute code on the system outside of the sandbox environment. Under the vulnerability reward program for this release, Google has awarded seven prizes totaling $22,000 (one prize of $10,000, one of $4,000, one of $3,000, one of $1,000, and two prizes of $2,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=60813\">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 123. \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":114456,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[702],"tags":[],"class_list":["post-114455","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 123. \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-123\" \/>\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 123 | 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 123. \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-123\" \/>\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-03-20T16:25:51+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-03-20T16:25:51+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 web browser Chrome 123 | ProHoster","description":"Google has released the web browser Chrome 123. 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-web-brauzera-chrome-123","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 123 | 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 123. \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-123","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-03-20T16:25:51+00:00","article:modified_time":"2024-03-20T16:25:51+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"114455","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":null,"breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2026-02-09 21:38:07","updated":"2026-02-09 21:39:38","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\/114455","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=114455"}],"version-history":[{"count":2,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/114455\/revisions"}],"predecessor-version":[{"id":159939,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/114455\/revisions\/159939"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media\/114456"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=114455"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=114455"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=114455"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}