Bieber Blocker

Tired of seeing Bieber's name everywhere without an insult before it? Tire no longer.

Что такое Bieber Blocker?

Bieber Blocker - это расширение Chrome, разработанное kaagleason, и его основная функция - "Tired of seeing Bieber's name everywhere without an insult before it? Tire no longer.".

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

screenshot
screenshot

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

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

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

                        There are certain celebrities that cause you to cringe when you hear or see their name. Some people just deserve to be insulted. Finally, a chrome extension that will monitor the web for you and insert some insulting adjective before all those celebrities' names.

NEW IN RELEASE 1.5:
- Improved UI
- Added insults

Note, in some rare cases, Bieber Blocker can mess with the javascript on a page. If you notice anything acting up simply disable Bieber Blocking and please let me know.                    

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

Название Bieber Blocker Bieber Blocker
ID ilommfifmlndhimdoehjkhnfaodpepop
Официальный URL https://chrome.google.com/webstore/detail/bieber-blocker/ilommfifmlndhimdoehjkhnfaodpepop
Описание Tired of seeing Bieber's name everywhere without an insult before it? Tire no longer.
Размер файла 35.14 KB
Количество установок 68
Текущая Версия 1.5
Последнее Обновление 2016-01-23
Дата публикации 2016-01-23
Рейтинг 3.71/5 Всего 7 оценок
Разработчик kaagleason
Тип оплаты in_app
Официальный сайт расширения http://kevingleason.me/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bieber Blocker",
    "short_name": "bBlocker",
    "description": "Tired of seeing Bieber's name everywhere without an insult before it? Tire no longer.",
    "version": "1.5",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Bieber Blocker",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "findReplace.js",
                "bblockr.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}