Emoji Font Override

Override default emoji fonts to prioritize Noto Color Emoji for consistent rendering of Unicode 16 emoji across all websites.

Version vom 17.06.2025. Aktuellste Version

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Emoji Font Override
// @namespace    https://greasyfork.org/en/scripts/539701-emoji-font-override
// @version      1
// @description  Override default emoji fonts to prioritize Noto Color Emoji for consistent rendering of Unicode 16 emoji across all websites.
// @author       TheSina
// @match        *://*/*
// @grant        GM_addStyle
// @run-at       document-start
// @license      MIT
// ==/UserScript==
     
 
 (function () {
    'use strict';

    GM_addStyle(`
        @font-face {
          font-family: "Segoe UI Emoji";
          src: local("Noto Color Emoji"),
               local("Apple Color Emoji"),
               local("Segoe UI Emoji"),
               local("Twemoji Mozilla");
          font-display: swap;
          unicode-range:
            U+0023, U+002A,
            U+0030-0039,
            U+FE0E-FE0F,
            U+200D, U+20E3,
            U+1F3FB-1F3FF,
            U+1F1E6-1F1FF,
            U+1F100-1F1FF,
            U+1F200-1F2FF,
            U+1F300-1F5FF,
            U+1F600-1F64F,
            U+1F680-1F6FF,
            U+1F900-1F9FF,
            U+1FA70-1FAFF,
            U+1FC00-1FCFF,
            U+2300-23FF,
            U+2190-21FF, U+2700-27BF,
            U+2B00-2BFF,
            U+1F780-1F7FF;
        }
    `);
})();