Twemoji for Chrome

Replaces default emojis with Twemoji. Enables your browser to display colored emojis if your OS does not support it.

Twemoji for Chromeとは何ですか?

Twemoji for Chromeは360.by.roderickによって開発されたChromeの拡張機能で、その主な機能は「Replaces default emojis with Twemoji. Enables your browser to display colored emojis if your OS does not support it.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Twemoji for Chrome拡張機能のCRXファイルをダウンロード

Twemoji for Chrome拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Enables Chrome to display colored emojis even if your OS does not support it. Replaces the default emojis with Twemoji (Twitter emoji library). 

Twemoji (v14.0 as of this publishing) adheres to the Unicode 14.0 spec and supports the Emoji 14.0 spec. More Twemoji info here:
* https://github.com/twitter/twemoji

To get an overview of new emojis added in 14.0, click here:
* https://emojipedia.org/emoji-14.0/

Notable changes for v0.0.8 :
* Default CDN updated to jsDeliver
* Removed MaxCDN as an option


Quick background:
I use a Windows 7 machine where color emojis are not supported. I used several other extensions but noticed that they were rather old and did not support newer emojis. I couldn't find an updated one so I decided to create my own. Works great on my machine, so hopefully it also works correctly on yours. 

Limitations:
* Only replaces emojis that are already available during the initial page load. Emojis added after via ajax, lazy-loading or other scripts will not be affected.
* Only works if browser is connected to the internet. It pulls emoji data from the internet, so replacement emojis may not appear if you're offline.
* Also, replacement emojis will not appear when viewing local HTML files.
* Uses SVG files for the replacement images so may cause issues if your browser has poor support for SVGs.
* A 2-second delay was added when loading twemojis in YouTube since YouTube partially adds/pulls/shows content on a on-demand basis. If you feel that this extension has made YouTube slow or unusable, kindly disable or uninstall this extension.
* May interfere with websites that interact with or are reliant on text emojis for their functionality. If this occurs, kindly disable or uninstall this extension.

Advantages:
* Replaces the default emoji set if you're not happy with the default emoji that comes with your OS.
* Adds emoji support to Chrome, even if not supported by the OS.
* Flags are shown correctly as actual flags, instead of the two-letter combo.

~~~~~
Changelog:

v0.07 ~~[ 11/23/2022 ]
* Added option to change CDN
* Reorganized code for speed improvements

v0.06 ~~[ 11/15/2022 ]
* Fixed issue where saving merges all URLs as one long string
* Added link to online help (https://bit.ly/TwemojiForChrome)
* Note that above link is a work in progress

v0.05 ~~[ 09/20/2022 ]
* New help documentation
* New option page that allows users to: 
     -- Exclude specific sites
     -- Modify emoji size
     -- View an unmodified page 
* Code changes to handle YouTube pages

v0.0.4  ~~[ 08/25/2022 ]
* Updated parser to use the Twemoji 14.0.2 release
* Added button to re-initialize the Twemoji conversions after load 

v0.0.3 ~~[ 02/09/2022 ]
* Code updated for compatibility with Manifest v3

v0.0.2 ~~[ 10/08/2020 ]
* Emojis are now pulled from: https://twemoji.maxcdn.com/v/latest/. This should automatically cover new emojis whenever an update to Twemoji is released.
* Uses SVGs instead of PNGs.

v0.0.1 ~~[ 07/17/2020 ]
* Initial release

🐸                    

拡張機能の基本情報

名前 Twemoji for Chrome Twemoji for Chrome
ID fopgafjdjlongoeblobbafbnapafcicg
公式URL https://chromewebstore.google.com/detail/twemoji-for-chrome/fopgafjdjlongoeblobbafbnapafcicg
説明 Replaces default emojis with Twemoji. Enables your browser to display colored emojis if your OS does not support it.
ファイルサイズ 26.03 KB
インストール数 3,512
現在のバージョン 0.0.8
最終更新日 2022-12-31
公開日 2020-07-15
評価 3.86/5 合計 29 レビュー
開発者 360.by.roderick
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://github.com/r0d3r1ck0rd0n3z
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twemoji for Chrome",
    "description": "Replaces default emojis with Twemoji. Enables your browser to display colored emojis if your OS does not support it.",
    "version": "0.0.8",
    "icons": {
        "16": "logo\/logo-16.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "twemoji.min.js",
                "TwemojiForChrome.js"
            ],
            "css": [
                "TwemojiForChrome.css"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "logo\/logo-16.png",
            "48": "logo\/logo-48.png",
            "128": "logo\/logo-128.png"
        },
        "default_title": "Click me to manage emojis for the current tab"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "o_Options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "o_Options.html",
                "options.js",
                "o_Help.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}