Soundboard Synth

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

什麼是Soundboard Synth?

Soundboard Synth是由http://soundboardsynth.com開發的Chrome擴展程式,該擴展的主要功能是“Discover and manipulate sounds on websites and play them back easily by pressing keys on your keyboard.”。

擴展截圖

screenshot

下載Soundboard Synth擴展crx文件

下載Soundboard Synth擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Soundboard Synth Soundboard Synth
ID dnhllkfmkhmppnpmfpkhaciekhgfdana
官方網址 https://chrome.google.com/webstore/detail/soundboard-synth/dnhllkfmkhmppnpmfpkhaciekhgfdana
簡介 Discover and manipulate sounds on websites and play them back easily by pressing keys on your keyboard.
檔案大小 5.95 MB
安裝次數 592
目前版本 1.0.1
更新時間 2020-04-01
上架時間 2020-03-29
評分 3.00/5 共 5 次評分
開發者 http://soundboardsynth.com
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://mariogiancini.com/privacy-policy
支援的語言 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
}