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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}