Big Brother Blocker
This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.
Co to jest Big Brother Blocker?
Big Brother Blocker to rozszerzenie Chrome opracowane przez ville.pv, a jego główną funkcją jest „This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Big Brother Blocker
Pobierz pliki rozszerzeń Big Brother Blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gjoppkgfoenmfemaobkefghgnfejoood |
Oficjalny URL | https://chrome.google.com/webstore/detail/big-brother-blocker/gjoppkgfoenmfemaobkefghgnfejoood |
Opis | This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites. |
Rozmiar pliku | 76.59 KB |
Liczba instalacji | 40 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2014-09-02 |
Data Publikacji | 2014-09-02 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | ville.pv |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |