Twitter Anonymizer
One-click anonymizer of tweets before sharing a screenshot.
Co je Twitter Anonymizer?
Twitter Anonymizer je rozšíření Chrome vyvinuté Marc Brillault, a jeho hlavní funkcí je „One-click anonymizer of tweets before sharing a screenshot.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitter Anonymizer
Stáhněte si soubory rozšíření Twitter Anonymizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Twitter Anonymizer |
ID | dliaabmcomhfhpibgbljmcjfgfkjbalf |
Oficiální URL | https://chromewebstore.google.com/detail/twitter-anonymizer/dliaabmcomhfhpibgbljmcjfgfkjbalf |
Popis | One-click anonymizer of tweets before sharing a screenshot. |
Velikost souboru | 33.64 KB |
Počet instalací | 40 |
Aktuální Verze | 1.3.1 |
Poslední Aktualizace | 2023-07-20 |
Datum Vydání | 2022-07-07 |
Vývojář | Marc Brillault |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/MarcBrillault/twitter-anonymizer |
URL Stránky Nápovědy | https://github.com/MarcBrillault/twitter-anonymizer/issues |
Podporované Jazyky | 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" ] } |