Twitter Customizer

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

ما هو Twitter Customizer؟

Twitter Customizer هو إضافة Chrome تم تطويرها بواسطة Alex، والميزة الرئيسية لها هي "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Twitter Customizer

قم بتنزيل ملفات الامتداد Twitter Customizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}