Click to Fart
A fart sound will be played whenever the mouse is clicked or held down
Click to Fartคืออะไร?
Click to Fart เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ramsol และคุณลักษณะหลักของมันคือ "A fart sound will be played whenever the mouse is clicked or held down"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Click to Fart
ดาวน์โหลดไฟล์ส่วนขยาย Click to Fart ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A fart sound will be played whenever the mouse is clicked or held down
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | 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": [ "*:\/\/*\/*" ] } ] } |