Twitter Anonymizer
One-click anonymizer of tweets before sharing a screenshot.
Qu'est-ce que Twitter Anonymizer ?
Twitter Anonymizer est une extension Chrome développée par Marc Brillault, et sa fonction principale est "One-click anonymizer of tweets before sharing a screenshot.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitter Anonymizer
Téléchargez les fichiers d'extension Twitter Anonymizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Twitter Anonymizer |
ID | dliaabmcomhfhpibgbljmcjfgfkjbalf |
URL Officiel | https://chromewebstore.google.com/detail/twitter-anonymizer/dliaabmcomhfhpibgbljmcjfgfkjbalf |
Description | One-click anonymizer of tweets before sharing a screenshot. |
Taille du Fichier | 33.64 KB |
Nombre d'Installations | 40 |
Version Actuelle | 1.3.1 |
Dernière Mise à Jour | 2023-07-20 |
Date de Publication | 2022-07-07 |
Développeur | Marc Brillault |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/MarcBrillault/twitter-anonymizer |
URL de la Page d'Aide | https://github.com/MarcBrillault/twitter-anonymizer/issues |
Langues Prises en Charge | 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" ] } |