Pitbullifier

Replace every image on the web with Pitbull!

Что такое Pitbullifier?

Pitbullifier - это расширение Chrome, разработанное https://lukepring.co.uk, и его основная функция - "Replace every image on the web with Pitbull!".

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

screenshot
screenshot
screenshot

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

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

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

                        The Pitbullifier Edge Extension replaces various aspects of a page to Pitbull, the famous AMERICAN RAPPER.

Essential for any Pitbull fan!

*New in 2.0*
- Text Replacement
- New Pitbulls
- Bulldex
- Options + credits
- UI improvements                    

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

Название Pitbullifier Pitbullifier
ID kofehaalompbenmkpekailbnokbmbldh
Официальный URL https://chromewebstore.google.com/detail/pitbullifier/kofehaalompbenmkpekailbnokbmbldh
Описание Replace every image on the web with Pitbull!
Размер файла 285 KB
Количество установок 27
Текущая Версия 2.0
Последнее Обновление 2021-05-19
Дата публикации 2021-05-04
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://lukepring.co.uk
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://lukepring.co.uk/pitbull
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pitbullifier",
    "description": "Replace every image on the web with Pitbull!",
    "version": "2.0",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "menu.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "pitbullify": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Replace every image on the web with Pitbull."
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "pitbullEngineLoad.js"
            ]
        }
    ]
}