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 |
Eメール | [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" ] } |