Click to Fart

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

Vad är Click to Fart?

Click to Fart är en Chrome-tillägg utvecklad av ramsol, och dess huvudfunktion är "A fart sound will be played whenever the mouse is clicked or held down".

Tilläggsskärmbilder

screenshot

Ladda ner Click to Fart-förlängningens CRX-fil

Ladda ner Click to Fart-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Click to Fart Click to Fart
ID lkodepkmpjpbgcfcgnbjinpjbmkbhlja
Officiell webbadress https://chromewebstore.google.com/detail/click-to-fart/lkodepkmpjpbgcfcgnbjinpjbmkbhlja
Beskrivning A fart sound will be played whenever the mouse is clicked or held down
Filstorlek 216 KB
Antal Installationer 251
Aktuell Version 1.0
Senast Uppdaterad 2023-06-26
Publiceringsdatum 2023-06-12
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare ramsol
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.earndesignlab.com
Stödda Språk 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}