Pitbullifier

Replace every image on the web with Pitbull!

Vad är Pitbullifier?

Pitbullifier är en Chrome-tillägg utvecklad av https://lukepring.co.uk, och dess huvudfunktion är "Replace every image on the web with Pitbull!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Pitbullifier-förlängningens CRX-fil

Ladda ner Pitbullifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Pitbullifier Pitbullifier
ID kofehaalompbenmkpekailbnokbmbldh
Officiell webbadress https://chromewebstore.google.com/detail/pitbullifier/kofehaalompbenmkpekailbnokbmbldh
Beskrivning Replace every image on the web with Pitbull!
Filstorlek 285 KB
Antal Installationer 27
Aktuell Version 2.0
Senast Uppdaterad 2021-05-19
Publiceringsdatum 2021-05-04
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://lukepring.co.uk
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://lukepring.co.uk/pitbull
Stödda Språk 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"
            ]
        }
    ]
}