Twitter Anonymizer

One-click anonymizer of tweets before sharing a screenshot.

O que é Twitter Anonymizer?

Twitter Anonymizer é uma extensão do Chrome desenvolvida por Marc Brillault, e sua principal característica é "One-click anonymizer of tweets before sharing a screenshot.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitter Anonymizer

Baixe arquivos de extensão Twitter Anonymizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Twitter Anonymizer Twitter Anonymizer
ID dliaabmcomhfhpibgbljmcjfgfkjbalf
URL Oficial https://chromewebstore.google.com/detail/twitter-anonymizer/dliaabmcomhfhpibgbljmcjfgfkjbalf
Descrição One-click anonymizer of tweets before sharing a screenshot.
Tamanho do Arquivo 33.64 KB
Contagem de Instalações 40
Versão Atual 1.3.1
Última Atualização 2023-07-20
Data de Publicação 2022-07-07
Desenvolvedor Marc Brillault
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/MarcBrillault/twitter-anonymizer
URL da Página de Ajuda https://github.com/MarcBrillault/twitter-anonymizer/issues
Idiomas Suportados 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"
    ]
}