NoDogeTweeter
Revert the Doge logo and restore the original Twitter logo.
NoDogeTweeter là gì?
NoDogeTweeter là một tiện ích mở rộng Chrome được phát triển bởi Blue Bird Back, và tính năng chính của nó là "Revert the Doge logo and restore the original Twitter logo.".
Ả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 NoDogeTweeter
Tải xuống các tệp mở rộng NoDogeTweeter 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
NoDogeTweeter is a Chrome extension that reverts the 𝕏 logo back to the original Twitter logo and changes the favicon back to its original design. This extension is useful if you prefer the original Twitter aesthetics over the changes made by Elon Musk. Features + Automatically detects the 𝕏 logo on Twitter and replaces it with the original Twitter logo. + Reverts the favicon back to its original design. + Preserves the original HTML structure. Instructions for use: + Install the NoDogeTweeter extension from the Chrome Web Store. + Visit twitter.com or refresh any open Twitter pages (press F5) to see the original Twitter logo in the top left corner. + The extension icon will appear blue on Twitter and gray on other websites, showing that it only affects Twitter pages. Please note: This extension is not affiliated with or endorsed by Twitter, Inc.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NoDogeTweeter |
ID | afahecnmmidcbakdlhiedljihbgeonci |
URL Chính Thức | https://chromewebstore.google.com/detail/nodogetweeter/afahecnmmidcbakdlhiedljihbgeonci |
Mô tả | Revert the Doge logo and restore the original Twitter logo. |
Kích Thước Tệp | 1.37 MB |
Số Lần Cài Đặt | 80 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2023-07-25 |
Ngày Phát Hành | 2023-04-08 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Blue Bird Back |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://bluebirdback.com/2023/08/03/bluebirdback-chrome-extension-privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NoDogeTweeter", "version": "1.1.0", "description": "Revert the Doge logo and restore the original Twitter logo.", "permissions": [ "activeTab", "tabs" ], "action": { "default_popup": "", "default_icon": { "16": "assets\/twitter-16.png", "24": "assets\/twitter-24.png", "32": "assets\/twitter-32.png", "48": "assets\/twitter-48.png", "64": "assets\/twitter-64.png", "128": "assets\/twitter-128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "assets\/twitter-16.png", "24": "assets\/twitter-24.png", "32": "assets\/twitter-32.png", "48": "assets\/twitter-48.png", "64": "assets\/twitter-64.png", "128": "assets\/twitter-128.png" } } |