Mitbbs Fake Post Filter

Filter fake post links for ads in mitbbs page.

¿Qué es Mitbbs Fake Post Filter?

Mitbbs Fake Post Filter es una extensión de Chrome desarrollada por Coder, y su función principal es "Filter fake post links for ads in mitbbs page.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Mitbbs Fake Post Filter

Descarga archivos de extensión Mitbbs Fake Post Filter 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

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

Información Básica de la Extensión

Nombre Mitbbs Fake Post Filter Mitbbs Fake Post Filter
ID pdcljffafafmpnnkampbiioblfkdohhn
URL Oficial https://chromewebstore.google.com/detail/mitbbs-fake-post-filter/pdcljffafafmpnnkampbiioblfkdohhn
Descripción Filter fake post links for ads in mitbbs page.
Tamaño del Archivo 12.3 KB
Cantidad de Instalaciones 89
Versión Actual 1.2
Última Actualización 2013-07-24
Fecha de Publicación 2013-07-23
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador Coder
Tipo de Pago free
Idiomas Soportados 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
}