Click to Fart

A fart sound will be played whenever the mouse is clicked or held down

什么是Click to Fart?

Click to Fart是由ramsol开发的Chrome扩展程序,该扩展的主要功能是“A fart sound will be played whenever the mouse is clicked or held down”。

扩展截图

screenshot

下载Click to Fart扩展crx文件

下载Click to Fart扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A fart sound will be played whenever the mouse is clicked or held down                    

扩展基本信息

名称 Click to Fart Click to Fart
ID lkodepkmpjpbgcfcgnbjinpjbmkbhlja
官方URL https://chromewebstore.google.com/detail/click-to-fart/lkodepkmpjpbgcfcgnbjinpjbmkbhlja
简介 A fart sound will be played whenever the mouse is clicked or held down
文件大小 216 KB
安装次数 251
当前版本 1.0
更新时间 2023-06-26
上架时间 2023-06-12
评分 5.00/5 共1次评分
开发者 ramsol
电子邮箱 [email protected]
付费类型 free
扩展官网 http://www.earndesignlab.com
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Click to Fart",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "description": "A fart sound will be played whenever the mouse is clicked or held down",
    "author": "[email protected]",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "click_sound.mp3",
                "long_click_sound.mp3"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}