Twitter Anonymizer
One-click anonymizer of tweets before sharing a screenshot.
Twitter Anonymizer là gì?
Twitter Anonymizer là một tiện ích mở rộng Chrome được phát triển bởi Marc Brillault, và tính năng chính của nó là "One-click anonymizer of tweets before sharing a screenshot.".
Ả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 Anonymizer
Tải xuống các tệp mở rộng Twitter Anonymizer 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
Want to share a content from Twitter, but you don't want to risk the harassment of the user ? With Twitter Anonymizer, the solution is just a click away ! Right click anywhere on a twitter page, select "Toggle anonymization", and see that every user name and icon in the thread is now unidentifiable. You can now take a screenshot of the page. Repeat the process to revert the page to its original state.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitter Anonymizer |
ID | dliaabmcomhfhpibgbljmcjfgfkjbalf |
URL Chính Thức | https://chromewebstore.google.com/detail/twitter-anonymizer/dliaabmcomhfhpibgbljmcjfgfkjbalf |
Mô tả | One-click anonymizer of tweets before sharing a screenshot. |
Kích Thước Tệp | 33.64 KB |
Số Lần Cài Đặt | 40 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2023-07-20 |
Ngày Phát Hành | 2022-07-07 |
Nhà Phát Triển | Marc Brillault |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/MarcBrillault/twitter-anonymizer |
URL Trang Trợ Giúp | https://github.com/MarcBrillault/twitter-anonymizer/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Anonymizer", "description": "One-click anonymizer of tweets before sharing a screenshot.", "version": "1.3.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_idle", "all_frames": true, "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "css": [ "styles.css" ], "js": [ "script.js" ] } ], "icons": { "128": "icon-128.png", "64": "icon-64.png", "32": "icon-32.png" }, "permissions": [ "contextMenus", "scripting" ] } |