Soundboard Synth

Discover and manipulate sounds on websites and play them back easily by pressing keys on your keyboard.

Cos'è Soundboard Synth?

Soundboard Synth è un'estensione di Chrome sviluppata da http://soundboardsynth.com, e la sua funzione principale è "Discover and manipulate sounds on websites and play them back easily by pressing keys on your keyboard.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Soundboard Synth

Scarica i file di estensione Soundboard Synth in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Sounboard Synth improves your online soundboard experience by doing away with the old-fashioned-one-at-a-time mouse clicking and providing you with keyboard key smashing fun times. 

Here's a few key features (with more on the way):
- Discover new sounds just by visiting websites
- Check for new audio files as you play sounds on a website
- Map your keyboard keys to found sounds
- Control playback speed of each sound or lock playback speed globally
- Adjust the start time for each sound mapped
- Play a sound multiple times without restart, or force retrigger on a mapped sound
- View all of your soundboards on a single page
- Download your sounds
- Export your soundboards and key maps to share or backup
- Import soundboards                    

Informazioni di Base sull'Estensione

Nome Soundboard Synth Soundboard Synth
ID dnhllkfmkhmppnpmfpkhaciekhgfdana
URL Ufficiale https://chrome.google.com/webstore/detail/soundboard-synth/dnhllkfmkhmppnpmfpkhaciekhgfdana
Descrizione Discover and manipulate sounds on websites and play them back easily by pressing keys on your keyboard.
Dimensione del File 5.95 MB
Conteggio Installazioni 592
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-04-01
Data di Pubblicazione 2020-03-29
Valutazione 3.00/5 Totale 5 Valutazioni
Sviluppatore http://soundboardsynth.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://mariogiancini.com/privacy-policy
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Soundboard Synth",
    "version": "1.0.1",
    "description": "Discover and manipulate sounds on websites and play them back easily by pressing keys on your keyboard.",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "notifications"
    ],
    "options_page": "options.html",
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "switcher.js",
                "soundboard.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Soundboard",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}