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
官方網址 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}