Big Brother Blocker
This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.
¿Qué es Big Brother Blocker?
Big Brother Blocker es una extensión de Chrome desarrollada por ville.pv, y su función principal es "This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Big Brother Blocker
Descarga archivos de extensión Big Brother Blocker 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
The extension will look for BB or Big Brother related content from mtv.fi, iltasanomat.fi, iltalehti.fi and hs.fi news websites and remove them. See screenshots.
Información Básica de la Extensión
Nombre | |
ID | gjoppkgfoenmfemaobkefghgnfejoood |
URL Oficial | https://chrome.google.com/webstore/detail/big-brother-blocker/gjoppkgfoenmfemaobkefghgnfejoood |
Descripción | This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites. |
Tamaño del Archivo | 76.59 KB |
Cantidad de Instalaciones | 40 |
Versión Actual | 0.0.1 |
Última Actualización | 2014-09-02 |
Fecha de Publicación | 2014-09-02 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | ville.pv |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Big Brother Blocker", "description": "This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.", "version": "0.0.1", "background": { "scripts": [ "background.js" ] }, "permissions": [ "http:\/\/*\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "content_scripts": [ { "matches": [ "http:\/\/iltasanomat.fi\/*", "http:\/\/www.iltasanomat.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "iltasanomat.js" ] }, { "matches": [ "http:\/\/www.mtv.fi\/*", "http:\/\/mtv.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "mtv.js" ] }, { "matches": [ "http:\/\/iltalehti.fi\/*", "http:\/\/www.iltalehti.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "iltalehti.js" ] }, { "matches": [ "http:\/\/hs.fi\/*", "http:\/\/www.hs.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "hs.js" ] } ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" } } |