Pitbullifier

Replace every image on the web with Pitbull!

什么是Pitbullifier?

Pitbullifier是由https://lukepring.co.uk开发的Chrome扩展程序,该扩展的主要功能是“Replace every image on the web with Pitbull!”。

扩展截图

screenshot
screenshot
screenshot

下载Pitbullifier扩展crx文件

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