Twitter Anonymizer
One-click anonymizer of tweets before sharing a screenshot.
Cos'è Twitter Anonymizer?
Twitter Anonymizer è un'estensione di Chrome sviluppata da Marc Brillault, e la sua funzione principale è "One-click anonymizer of tweets before sharing a screenshot.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Anonymizer
Scarica i file di estensione Twitter Anonymizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | dliaabmcomhfhpibgbljmcjfgfkjbalf |
| URL Ufficiale | https://chromewebstore.google.com/detail/twitter-anonymizer/dliaabmcomhfhpibgbljmcjfgfkjbalf |
| Descrizione | One-click anonymizer of tweets before sharing a screenshot. |
| Dimensione del File | 33.64 KB |
| Conteggio Installazioni | 40 |
| Versione Corrente | 1.3.1 |
| Ultimo Aggiornamento | 2023-07-20 |
| Data di Pubblicazione | 2022-07-07 |
| Sviluppatore | Marc Brillault |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/MarcBrillault/twitter-anonymizer |
| URL della Pagina di Aiuto | https://github.com/MarcBrillault/twitter-anonymizer/issues |
| Lingue Supportate | 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"
]
} | |