Mitbbs Fake Post Filter

Filter fake post links for ads in mitbbs page.

O que é Mitbbs Fake Post Filter?

Mitbbs Fake Post Filter é uma extensão do Chrome desenvolvida por Coder, e sua principal característica é "Filter fake post links for ads in mitbbs page.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Mitbbs Fake Post Filter

Baixe arquivos de extensão Mitbbs Fake Post Filter 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

                        For mitbbs.com only, the extension is used to block the links to fake posts that lead to ads. It also block posts from known ID that promote fake posts.

巨烦mitbbs在首页放一些假的帖子链接,欺骗用户点击广告,还有不少坑王老是弄些乱七八糟的帖子吸引眼球。用本插件可完全屏蔽这些垃圾信息。                    

Informações Básicas da Extensão

Nome Mitbbs Fake Post Filter Mitbbs Fake Post Filter
ID pdcljffafafmpnnkampbiioblfkdohhn
URL Oficial https://chromewebstore.google.com/detail/mitbbs-fake-post-filter/pdcljffafafmpnnkampbiioblfkdohhn
Descrição Filter fake post links for ads in mitbbs page.
Tamanho do Arquivo 12.3 KB
Contagem de Instalações 89
Versão Atual 1.2
Última Atualização 2013-07-24
Data de Publicação 2013-07-23
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Coder
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mitbbs Fake Post Filter",
    "version": "1.2",
    "description": "Filter fake post links for ads in mitbbs page.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mitbbs.com\/*",
                "http:\/\/www.mitbbs.com\/*",
                "http:\/\/mitbbs.ca\/*",
                "http:\/\/www.mitbbs.ca\/*",
                "http:\/\/mitbbs.cn\/*",
                "http:\/\/www.mitbbs.cn\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "block.png",
        "default_title": "No more fake Mitbbs post!"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2
}