Twitter Bird
Extension which returns the Twitter bird icon back
Twitter Bird là gì?
Twitter Bird là một tiện ích mở rộng Chrome được phát triển bởi https://cking.software, và tính năng chính của nó là "Extension which returns the Twitter bird icon back".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitter Bird
Tải xuống các tệp mở rộng Twitter Bird dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Replaces the main Twitter icon and favicon icon with the canonical Bird. Opensource project.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitter Bird |
ID | ihahjhhimifemcpmbghgjmniofjchmlh |
URL Chính Thức | https://chromewebstore.google.com/detail/twitter-bird/ihahjhhimifemcpmbghgjmniofjchmlh |
Mô tả | Extension which returns the Twitter bird icon back |
Kích Thước Tệp | 553 KB |
Số Lần Cài Đặt | 196 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2023-08-29 |
Ngày Phát Hành | 2023-07-26 |
Đánh Giá | 4.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://cking.software |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Semper-Viventem/twitter-bird |
URL Trang Trợ Giúp | https://github.com/Semper-Viventem/twitter-bird/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitter Bird", "description": "Extension which returns the Twitter bird icon back", "version": "1.1", "action": { "default_icon": "images\/icon_512.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "css": [ "content.css" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png", "512": "images\/icon_128.png" } } |