Twitter Anonymizer
One-click anonymizer of tweets before sharing a screenshot.
什么是Twitter Anonymizer?
Twitter Anonymizer是由Marc Brillault开发的Chrome扩展程序,该扩展的主要功能是“One-click anonymizer of tweets before sharing a screenshot.”。
扩展截图
下载Twitter Anonymizer扩展crx文件
下载Twitter Anonymizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Twitter Anonymizer |
ID | dliaabmcomhfhpibgbljmcjfgfkjbalf |
官方URL | https://chromewebstore.google.com/detail/twitter-anonymizer/dliaabmcomhfhpibgbljmcjfgfkjbalf |
简介 | One-click anonymizer of tweets before sharing a screenshot. |
文件大小 | 33.64 KB |
安装次数 | 40 |
当前版本 | 1.3.1 |
更新时间 | 2023-07-20 |
上架时间 | 2022-07-07 |
开发者 | Marc Brillault |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/MarcBrillault/twitter-anonymizer |
帮助页面URL | https://github.com/MarcBrillault/twitter-anonymizer/issues |
支持的语言 | 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" ] } |