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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
    }
}