Hide Verified Twitter Users

A Chrome extension that hides verified Twitter users' posts.

O que é Hide Verified Twitter Users?

Hide Verified Twitter Users é uma extensão do Chrome desenvolvida por sardistic, e sua principal característica é "A Chrome extension that hides verified Twitter users' posts.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Hide Verified Twitter Users

Baixe arquivos de extensão Hide Verified Twitter Users 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

                        Chrome Extension: Hide Verified Posts
This Chrome extension allows you to toggle hiding verified posts on Twitter. When the extension is active, it will hide all tweets from verified users.

How to use
Install the extension in your Chrome browser.
Click on the extension icon in the toolbar to toggle between hiding and showing verified posts.
The extension will automatically update the display of tweets on the current page according to your preference (hide/show verified posts).

This is a very crude extension that sometimes produces errors, but works enough for my purposes. If you'd like to update or change any of the code, it is published on GitHub here:

https://github.com/sardistic/Hide-Verified-Twitter-Users                    

Informações Básicas da Extensão

Nome Hide Verified Twitter Users Hide Verified Twitter Users
ID egpeogmkamgdmolhpkajgnoookedcghb
URL Oficial https://chromewebstore.google.com/detail/hide-verified-twitter-use/egpeogmkamgdmolhpkajgnoookedcghb
Descrição A Chrome extension that hides verified Twitter users' posts.
Tamanho do Arquivo 7.72 KB
Contagem de Instalações 62
Versão Atual 1.0
Última Atualização 2023-04-27
Data de Publicação 2023-04-26
Classificação 2.00/5 Total de 1 Avaliações
Desenvolvedor sardistic
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.sardistic.com
URL da Página de Ajuda https://ko-fi.com/sardistic
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Verified Twitter Users",
    "version": "1.0",
    "description": "A Chrome extension that hides verified Twitter users' posts.",
    "icons": {
        "48": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ]
}