Twitter Anonymizer

One-click anonymizer of tweets before sharing a screenshot.

¿Qué es Twitter Anonymizer?

Twitter Anonymizer es una extensión de Chrome desarrollada por Marc Brillault, y su función principal es "One-click anonymizer of tweets before sharing a screenshot.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Twitter Anonymizer

Descarga archivos de extensión Twitter Anonymizer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Twitter Anonymizer Twitter Anonymizer
ID dliaabmcomhfhpibgbljmcjfgfkjbalf
URL Oficial https://chromewebstore.google.com/detail/twitter-anonymizer/dliaabmcomhfhpibgbljmcjfgfkjbalf
Descripción One-click anonymizer of tweets before sharing a screenshot.
Tamaño del Archivo 33.64 KB
Cantidad de Instalaciones 40
Versión Actual 1.3.1
Última Actualización 2023-07-20
Fecha de Publicación 2022-07-07
Desarrollador Marc Brillault
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/MarcBrillault/twitter-anonymizer
URL de la Página de Ayuda https://github.com/MarcBrillault/twitter-anonymizer/issues
Idiomas Soportados 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"
    ]
}