Twitter Customizer

Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.

什么是Twitter Customizer?

Twitter Customizer是由Alex开发的Chrome扩展程序,该扩展的主要功能是“Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.”。

扩展截图

screenshot

下载Twitter Customizer扩展crx文件

下载Twitter Customizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A simple chrome extension which allows you to personalize your experience by uploading your own image to replace the standard X logo and favicon on the client.

You can easily add a touch of personality to your browser. Simply upload your favorite asset and it will be displayed in place.                    

扩展基本信息

名称 Twitter Customizer Twitter Customizer
ID gldkmephdjlaondcbjadadgmhcnjlnfj
官方URL https://chromewebstore.google.com/detail/twitter-customizer/gldkmephdjlaondcbjadadgmhcnjlnfj
简介 Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.
文件大小 43 KB
安装次数 410
当前版本 1.2.0
更新时间 2023-12-09
上架时间 2023-04-12
评分 4.43/5 共7次评分
开发者 Alex
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Customizer",
    "version": "1.2.0",
    "short_name": "TC",
    "description": "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.",
    "manifest_version": 3,
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "16": "assets\/images\/no_more_doge_16.png",
        "32": "assets\/images\/no_more_doge_32.png",
        "48": "assets\/images\/no_more_doge_48.png",
        "128": "assets\/images\/no_more_doge_128.png"
    },
    "background": {
        "service_worker": "assets\/scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "assets\/scripts\/contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}