Bring the Twitter Bird Back
A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.
Bring the Twitter Bird Backคืออะไร?
Bring the Twitter Bird Back เป็นส่วนขยายของ Chrome ที่พัฒนาโดย y4nci และคุณลักษณะหลักของมันคือ "A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bring the Twitter Bird Back
ดาวน์โหลดไฟล์ส่วนขยาย Bring the Twitter Bird Back ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
We all miss the iconic Twitter bird right? Here is an extension for you to bring the bird back. The only thing you need to do is to install the extension and let it do its job! If you have any issues, or something's broken, you can open an issue here: https://github.com/y4nci/bring-twitter-bird-back/issues. Special thanks to my sponsors, Görkem and Murat for their support.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Bring the Twitter Bird Back |
ID | digdceeidmgbnjlmgjjcnndacaaobfgk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bring-the-twitter-bird-ba/digdceeidmgbnjlmgjjcnndacaaobfgk |
คำอธิบาย | A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website. |
ขนาดไฟล์ | 18.82 KB |
จำนวนการติดตั้ง | 288 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2023-08-29 |
วันที่เผยแพร่ | 2023-08-04 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | y4nci |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bring the Twitter Bird Back", "version": "0.2", "author": "Baran Yanc\u0131", "description": "A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.", "host_permissions": [ "*:\/\/*.twitter.com\/*" ], "web_accessible_resources": [ { "resources": [ "\/images\/*" ], "matches": [ "*:\/\/*.twitter.com\/*" ] } ], "permissions": [ "activeTab", "scripting", "tabs" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icons\/light16.png", "32": "images\/icons\/light32.png" }, "default_title": "Bring the Twitter Bird Back", "theme_icons": [ { "light": "images\/icons\/light16.png", "dark": "images\/icons\/dark16.png", "size": 16 }, { "light": "images\/icons\/light32.png", "dark": "images\/icons\/dark32.png", "size": 32 } ] } } |