غاوي شروحات
موقع تقنى يهتم بتحميل وتنزيل جميع برامج الكمبيوتر كاملة مجانا، كما يهتم بتوفير تطبيقات والعاب الهاتف الاندرويد وتطبيقات الايفون، ويقدم لكم افضل طرق للربح من الانترنت

Organize your 9 tiles into three rows of three:

| Top Row (Work) | Middle Row (Personal) | Bottom Row (Quick Access) | | :--- | :--- | :--- | | Gmail | YouTube | Weather.com | | Notion | Reddit | Google Translate | | GitHub | Amazon | Calendar |

Did you know you can pin deep links? Instead of amazon.com, pin: https://www.amazon.com/gp/css/order-history – Order history page. https://calendar.google.com/calendar/r/week – Weekly calendar view.

The MostVisited9 update in Chrome’s New Tab Page is a subtle but impactful evolution of one of the browser’s oldest features. By expanding from 8 to 9 tiles, refining the ranking algorithm, and improving customization, Google aims to balance familiarity with discoverability — all while preserving local privacy. Developers and power users can leverage flags and policies to tailor behavior, but the default 9-tile layout is now standard across Chrome stable releases.

If you need a specific section expanded — such as the code changes in Chromium, A/B test results, or user metrics — let me know.

The Google Chrome New Tab Page (NTP) serves as the digital front door for billions of users, evolving from a simple grid of thumbnails into a sophisticated, algorithm-driven launchpad. The most recent "mostvisited9" updates represent a deeper integration of user habits and interface (UI) personalization. commandlinux.com The Evolution of the Digital Mirror

In its early iterations, Chrome's most visited feature was a static collection of nine screenshots that reflected a user's recent history. Today, this system has shifted toward a dynamic Most Visited Sites

algorithm that prioritizes efficiency and predictive utility. Google Help

The updated ranking system now weighs several behavioral metrics: commandlinux.com Visit Frequency (~85% influence): The sheer volume of daily interactions with a site. Recency (~70% influence): Newer browsing habits quickly override older patterns. Session Duration (~55% influence):

Deep engagement on a page carries more weight than brief "hit-and-run" visits. Interaction Depth (~40% influence):

Navigating through sub-pages signals higher intent and priority. Personalization vs. Privacy

The modern New Tab Page reflects a tension between convenience and data sensitivity. While these shortcuts are stored locally to prevent external data transmission, they serve as a visible record of a user's digital footprint. This has led to the introduction of more robust customization features

, allowing users to manually toggle between "Most visited sites" and "My shortcuts" (curated manually) or even hide the section entirely to maintain privacy. Google Help Technical Shifts and Stability

Recent updates have introduced more than just visual tweaks. The internal URL structure, such as chrome://newtab/#most_visited

, now operates as a specific gateway for users on various operating systems to bypass standard NTP layouts. Furthermore, Chrome's recent push toward vertical tabs

(released in early April 2026) suggests a broader reimagining of how users manage multiple destinations at once, shifting the focus from a single "front door" to a persistent sidebar of utility. commandlinux.com

Chromium developers are testing:


If you opened a new tab in Google Chrome this week, you might have experienced a fleeting moment of digital vertigo. The grid was different. The order had shifted. The algorithm, ever the silent observer, had spoken.

Google has rolled out a subtle but significant update to its New Tab Page (NTP), specifically refining the logic behind the "Most Visited" shortcuts—colloquially known among power users as the "Most Visited 9." While Chrome has long offered a grid of frequently visited sites, this update tweaks the frequency and recency algorithms, prioritizing "session utility" over raw click volume.

But beyond the technical tweaks lies a more interesting story: the New Tab Page is the most valuable real estate on the internet, and it is currently undergoing an identity crisis.

In Chromium’s source code, the change from 8 to 9 most visited sites is controlled by a feature flag:

// components/ntp_tiles/constants.h
const int kMaxNumTiles = 9;  // Updated from 8

The TopSites service, which pulls data from the history database, now ranks URLs using a scoring function that considers:

The NTP frontend (implemented in JavaScript/HTML via chrome://new-tab-page) dynamically allocates a CSS grid with minmax(88px, 1fr) columns to support responsive layouts.

As of the latest Chrome versions: