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
Eメール [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"
    }
}