Pitbullifier

Replace every image on the web with Pitbull!

Co to jest Pitbullifier?

Pitbullifier to rozszerzenie Chrome opracowane przez https://lukepring.co.uk, a jego główną funkcją jest „Replace every image on the web with Pitbull!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Pitbullifier

Pobierz pliki rozszerzeń Pitbullifier 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 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                    

Podstawowe informacje o rozszerzeniu

Nazwa Pitbullifier Pitbullifier
ID kofehaalompbenmkpekailbnokbmbldh
Oficjalny URL https://chromewebstore.google.com/detail/pitbullifier/kofehaalompbenmkpekailbnokbmbldh
Opis Replace every image on the web with Pitbull!
Rozmiar pliku 285 KB
Liczba instalacji 27
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2021-05-19
Data Publikacji 2021-05-04
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://lukepring.co.uk
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://lukepring.co.uk/pitbull
Obsługiwane Języki 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"
            ]
        }
    ]
}