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 |
公式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 |
Eメール | [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 } ] } } |