Big Brother Blocker

This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.

Что такое Big Brother Blocker?

Big Brother Blocker - это расширение Chrome, разработанное ville.pv, и его основная функция - "This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Big Brother Blocker

Скачайте файлы расширений Big Brother Blocker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Big Brother Blocker Big Brother Blocker
ID gjoppkgfoenmfemaobkefghgnfejoood
Официальный URL https://chrome.google.com/webstore/detail/big-brother-blocker/gjoppkgfoenmfemaobkefghgnfejoood
Описание This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.
Размер файла 76.59 KB
Количество установок 40
Текущая Версия 0.0.1
Последнее Обновление 2014-09-02
Дата публикации 2014-09-02
Рейтинг 5.00/5 Всего 1 оценок
Разработчик ville.pv
Тип оплаты free
Поддерживаемые языки 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"
    }
}