TwitterBird
Changes the "X" brand back to Twitter
TwitterBirdคืออะไร?
TwitterBird เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://labystudio.de และคุณลักษณะหลักของมันคือ "Changes the "X" brand back to Twitter"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TwitterBird
ดาวน์โหลดไฟล์ส่วนขยาย TwitterBird ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This add-on reverts all logos of the Twitter/X website back to the Twitter bird. It changes every single X logo, including the icon in the browser tab, the logout screen, and the boot screen. Additionally, it modifies the avatar, banner, name, handle and badge of the official Twitter accounts. Please be aware that Twitter is currently changing its website every day. I'm trying to keep the add-on up to date with the latest changes Elon Musk is making to Twitter/X.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | TwitterBird |
ID | cglkhpbplnpobkhgecadnemehdaphahh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitterbird/cglkhpbplnpobkhgecadnemehdaphahh |
คำอธิบาย | Changes the "X" brand back to Twitter |
ขนาดไฟล์ | 1.72 MB |
จำนวนการติดตั้ง | 213 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2023-07-27 |
วันที่เผยแพร่ | 2023-07-25 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | https://labystudio.de |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TwitterBird", "description": "Changes the \"X\" brand back to Twitter", "short_name": "TwitterBird", "manifest_version": 3, "version": "1.2", "icons": { "16": "assets\/icon\/icon16.png", "164": "assets\/icon\/icon164.png" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*", "https:\/\/*.x.com\/*" ], "js": [ "js\/Injector.js", "js\/controllers\/SvgLogoInjector.js", "js\/controllers\/FaviconInjector.js", "js\/controllers\/TwitterAccountInjector.js", "js\/controllers\/TitleInjector.js", "js\/TwitterBird.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "https:\/\/*.twitter.com\/*", "https:\/\/*.x.com\/*" ] } ] } |