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是由y4nci開發的Chrome擴展程式,該擴展的主要功能是“A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.”。
擴展截圖
下載Bring the Twitter Bird Back擴展crx文件
下載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 |
官方網址 | 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 } ] } } |