Ghosted: Hide Annoying People on Facebook

Makes annoying people vanish.

O que é Ghosted: Hide Annoying People on Facebook?

Ghosted: Hide Annoying People on Facebook é uma extensão do Chrome desenvolvida por Andrew Theroux, e sua principal característica é "Makes annoying people vanish.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Ghosted: Hide Annoying People on Facebook

Baixe arquivos de extensão Ghosted: Hide Annoying People on Facebook 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

                        Ghosted is a lightweight Chrome extension that hides annoying people on Facebook (without blocking them).

Why use ghosted? You could unfollow someone, but that doesn't prevent you from seeing their comments or posts in groups and events.

Or you could block someone, but that's a rather heavy-handed solution. The blocked person might figure out that they've been blocked, which is not always what you want.

Ghosted makes the offending party's comments and posts fade or vanish. But if you need to see a ghosted person, it takes just 1 click to restore them to full visibility.

Useful for trolls, embarrassing relatives, frenemies, and jilted lovers.

Ghosted is completely unoffocial and not affiliated with Facebook, Inc. in any way.                    

Informações Básicas da Extensão

Nome Ghosted: Hide Annoying People on Facebook Ghosted: Hide Annoying People on Facebook
ID kbbpmdodkccfnnkhmdelpnnjbackdmgg
URL Oficial https://chromewebstore.google.com/detail/ghosted-hide-annoying-peo/kbbpmdodkccfnnkhmdelpnnjbackdmgg
Descrição Makes annoying people vanish.
Tamanho do Arquivo 43.94 KB
Contagem de Instalações 230
Versão Atual 1.1.1
Última Atualização 2015-10-13
Data de Publicação 2015-10-13
Classificação 3.92/5 Total de 13 Avaliações
Desenvolvedor Andrew Theroux
Tipo de Pagamento free
Site da Extensão https://github.com/theroux/ghosted
URL da Página de Ajuda https://github.com/theroux/ghosted
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ghosted: Hide Annoying People on Facebook",
    "short_name": "Ghosted",
    "description": "Makes annoying people vanish.",
    "author": "Andrew Theroux, Brandon Hunter",
    "version": "1.1.1",
    "homepage_url": "https:\/\/github.com\/theroux\/ghosted",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/www.facebook.com\/",
        "http:\/\/www.facebook.com\/",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "bootstrap.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.facebook.com\/*",
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "libs\/underscore.min.js",
                "ghosted.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "Ghosted",
        "default_icon": "icons\/icon128.png",
        "default_popup": "popup.html"
    }
}