<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Chrome on Margrop Blog</title>
    <link>https://blog.margrop.net/en/tag/chrome/</link>
    <description>Recent content in Chrome on Margrop Blog</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-US</language>
    <lastBuildDate>Sat, 27 Jun 2026 23:00:00 +0800</lastBuildDate>
    <atom:link href="https://blog.margrop.net/en/tag/chrome/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Chrome Ate 4GB of Disk Space? Delete the Local AI Model and Stop It Coming Back</title>
      <link>https://blog.margrop.net/en/post/chrome-disable-local-ai-model-4gb/</link>
      <pubDate>Sat, 27 Jun 2026 23:00:00 +0800</pubDate>
      <guid>https://blog.margrop.net/en/post/chrome-disable-local-ai-model-4gb/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&lt;strong&gt;Short version&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Some Google Chrome installations now download several gigabytes of local generative AI model data in the background. This is usually not malware and not a broken cache. It is Chrome preparing on-device AI models for browser and web features. Deleting the folder only frees disk space temporarily. The durable fix is to &lt;strong&gt;disable the local GenAI foundational model download with Chrome policy, then remove the already downloaded model folders&lt;/strong&gt;.&lt;/p&gt;&#xA;&lt;p&gt;This guide covers Windows 11, Ubuntu 26.04, and macOS 26. It includes one-click scripts, manual steps, and an agent prompt you can hand to Codex, Claude, OpenClaw, Gemini CLI, or another local operator. The scripts use native OS policy mechanisms and Chrome&amp;rsquo;s documented policy. They do not depend on third-party services and do not include real IP addresses, hostnames, internal domains, or secrets.&lt;/p&gt;&#xA;&lt;/blockquote&gt;</description>
    </item>
    <item>
      <title>New Chrome Could Not Log In to Bitwarden, but Old Machines Still Worked: A Vaultwarden Compatibility Trap</title>
      <link>https://blog.margrop.net/en/post/chrome-bitwarden-vaultwarden-login-failure-prelogin/</link>
      <pubDate>Mon, 18 May 2026 10:05:00 +0800</pubDate>
      <guid>https://blog.margrop.net/en/post/chrome-bitwarden-vaultwarden-login-failure-prelogin/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;The failure looked like a Chrome or Bitwarden extension problem: newly installed computers could not log in to a self-hosted Vaultwarden instance, while existing computers continued to work with the same Bitwarden &lt;code&gt;2026.4.1&lt;/code&gt; browser extension. The actual root cause was server-side compatibility: the clients were using a newer prelogin endpoint, while the Vaultwarden server was still running &lt;code&gt;vaultwarden/server:1.35.4-alpine&lt;/code&gt;, which did not provide &lt;code&gt;/identity/accounts/prelogin/password&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Existing machines were likely protected by an already established login state and local cache. They did not prove that the full first-login API path was still compatible. The correct fix was to back up the Vaultwarden data, upgrade the server image to &lt;code&gt;1.36.0&lt;/code&gt; or newer, and confirm from logs that the prelogin endpoint no longer returned 404.&lt;/p&gt;&#xA;&lt;p&gt;All domains, paths, usernames, and deployment details in this article are sanitized. Examples use placeholders such as &lt;code&gt;vault.example.com&lt;/code&gt; and &lt;code&gt;/opt/vaultwarden&lt;/code&gt;; no internal network or private information is included.&lt;/p&gt;&#xA;&lt;/blockquote&gt;</description>
    </item>
    <item>
      <title>A Python-based way to keep China Telecom Cloud PC awake</title>
      <link>https://blog.margrop.net/en/post/automating-connections-to-ctyun-desktop-using-python/</link>
      <pubDate>Tue, 18 Jun 2024 17:41:35 +0800</pubDate>
      <guid>https://blog.margrop.net/en/post/automating-connections-to-ctyun-desktop-using-python/</guid>
      <description>&lt;h4 id=&#34;principle-regularly-connect-to-china-telecom-cloud-desktop-interval-must-be-less-than-1-hour&#34;&gt;Principle: Regularly connect to China Telecom Cloud Desktop (interval must be less than 1 hour)&lt;/h4&gt;&#xA;&lt;h5 id=&#34;step-1-obtain-request-data&#34;&gt;Step 1: Obtain Request Data&lt;/h5&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;strong&gt;Open Chrome browser&amp;rsquo;s Developer Tools&lt;/strong&gt;:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;In Chrome browser, press &lt;code&gt;F12&lt;/code&gt; or right-click and select &lt;code&gt;Inspect&lt;/code&gt; to open Developer Tools.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;strong&gt;Visit and log in to China Telecom Cloud Desktop&lt;/strong&gt;:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Visit &lt;code&gt;https://pc.ctyun.cn&lt;/code&gt; and log in to Cloud PC with your account.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;strong&gt;Copy the curl command for the connect request&lt;/strong&gt;:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;In Developer Tools, select the &lt;code&gt;Network&lt;/code&gt; tab, find and click on the request named &lt;code&gt;connect&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;Right-click on this request and select &lt;code&gt;Copy as cURL (cmd)&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;strong&gt;Obtain authData from localStorage&lt;/strong&gt;:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;In Developer Tools, select the &lt;code&gt;Application&lt;/code&gt; tab.&lt;/li&gt;&#xA;&lt;li&gt;In the left sidebar, find &lt;code&gt;Local Storage&lt;/code&gt; and select &lt;code&gt;https://pc.ctyun.cn&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;Find the &lt;code&gt;authData&lt;/code&gt; key and copy its corresponding value.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ol&gt;</description>
    </item>
    <item>
      <title>Essential Chrome Plugins for Developers</title>
      <link>https://blog.margrop.net/en/post/chrome-plugins-that-developers-must-install/</link>
      <pubDate>Mon, 10 May 2021 09:18:24 +0800</pubDate>
      <guid>https://blog.margrop.net/en/post/chrome-plugins-that-developers-must-install/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;Note: You will need to resolve the issue of being unable to access &lt;code&gt;chrome.google.com&lt;/code&gt; on your own.&lt;/p&gt;&#xA;&lt;/blockquote&gt;</description>
    </item>
    <item>
      <title>Recommendations and downloads of commonly used Windows software, no recommendations</title>
      <link>https://blog.margrop.net/en/post/windows-software-recommend-and-download/</link>
      <pubDate>Sun, 24 Jan 2021 22:22:47 +0800</pubDate>
      <guid>https://blog.margrop.net/en/post/windows-software-recommend-and-download/</guid>
      <description>Here we recommend some software commonly used in the Windows environment of this site. There are no recommendations. If you don’t like it, please close the page.&#xA;This software is equivalent to Windows version 应用市场, but does not include any bundled software. *Tencent officially closed the download of this independent version of the software N years ago (N&amp;gt;3). For the application market, it is obviously not cost-effective to install an additional Tencent Computer Manager.</description>
    </item>
  </channel>
</rss>
