Soundboard Synth

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

¿Qué es Soundboard Synth?

Soundboard Synth es una extensión de Chrome desarrollada por http://soundboardsynth.com, y su función principal es "Discover and manipulate sounds on websites and play them back easily by pressing keys on your keyboard.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Soundboard Synth

Descarga archivos de extensión Soundboard Synth en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Soundboard Synth Soundboard Synth
ID dnhllkfmkhmppnpmfpkhaciekhgfdana
URL Oficial https://chrome.google.com/webstore/detail/soundboard-synth/dnhllkfmkhmppnpmfpkhaciekhgfdana
Descripción Discover and manipulate sounds on websites and play them back easily by pressing keys on your keyboard.
Tamaño del Archivo 5.95 MB
Cantidad de Instalaciones 592
Versión Actual 1.0.1
Última Actualización 2020-04-01
Fecha de Publicación 2020-03-29
Calificación 3.00/5 Total de 5 Calificaciones
Desarrollador http://soundboardsynth.com
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://mariogiancini.com/privacy-policy
Idiomas Soportados 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
}