Twitter Customizer
Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.
Twitter Customizer là gì?
Twitter Customizer là một tiện ích mở rộng Chrome được phát triển bởi Alex, và tính năng chính của nó là "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.".
Ả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 Customizer
Tải xuống các tệp mở rộng Twitter Customizer 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
A simple chrome extension which allows you to personalize your experience by uploading your own image to replace the standard X logo and favicon on the client. You can easily add a touch of personality to your browser. Simply upload your favorite asset and it will be displayed in place.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gldkmephdjlaondcbjadadgmhcnjlnfj |
URL Chính Thức | https://chromewebstore.google.com/detail/twitter-customizer/gldkmephdjlaondcbjadadgmhcnjlnfj |
Mô tả | Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon. |
Kích Thước Tệp | 43 KB |
Số Lần Cài Đặt | 410 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2023-12-09 |
Ngày Phát Hành | 2023-04-12 |
Đánh Giá | 4.43/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Alex |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Customizer", "version": "1.2.0", "short_name": "TC", "description": "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.", "manifest_version": 3, "permissions": [ "declarativeContent", "storage" ], "icons": { "16": "assets\/images\/no_more_doge_16.png", "32": "assets\/images\/no_more_doge_32.png", "48": "assets\/images\/no_more_doge_48.png", "128": "assets\/images\/no_more_doge_128.png" }, "background": { "service_worker": "assets\/scripts\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*", "*:\/\/*.twitter.com\/*" ], "js": [ "assets\/scripts\/contentScript.js" ], "run_at": "document_start" } ], "action": { "default_popup": "popup.html" } } |