Pitbullifier

Replace every image on the web with Pitbull!

Hvad er Pitbullifier?

Pitbullifier er en Chrome-udvidelse udviklet af https://lukepring.co.uk, og dens hovedfunktion er "Replace every image on the web with Pitbull!".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Pitbullifier-udvidelses-CRX-fil

Download Pitbullifier-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Pitbullifier Pitbullifier
ID kofehaalompbenmkpekailbnokbmbldh
Officiel URL https://chromewebstore.google.com/detail/pitbullifier/kofehaalompbenmkpekailbnokbmbldh
Beskrivelse Replace every image on the web with Pitbull!
Filstørrelse 285 KB
Antal Installationer 27
Nuværende Version 2.0
Senest Opdateret 2021-05-19
Udgivelsesdato 2021-05-04
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler https://lukepring.co.uk
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://lukepring.co.uk/pitbull
Understøttede Sprog 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"
            ]
        }
    ]
}