Sounds Plus

Add sound effects to Google Chrome with Sounds Plus!

Что такое Sounds Plus?

Sounds Plus - это расширение Chrome, разработанное Martin Nester, и его основная функция - "Add sound effects to Google Chrome with Sounds Plus!".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Sounds Plus

Скачайте файлы расширений Sounds Plus в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Web browsing can be so quiet and boring. Have some fun with sound effects. With Sounds Plus you can add sound effects the many events, such as creating a new tab, or pasting text. This extension will change your web browsing experience.                    

Основная информация о расширении

Название Sounds Plus Sounds Plus
ID hplkfmjhkdpbiekddokeabgcbpoffoee
Официальный URL https://chromewebstore.google.com/detail/sounds-plus/hplkfmjhkdpbiekddokeabgcbpoffoee
Описание Add sound effects to Google Chrome with Sounds Plus!
Размер файла 4.01 MB
Количество установок 479
Текущая Версия 1.0
Последнее Обновление 2021-01-28
Дата публикации 2021-01-28
Рейтинг 4.17/5 Всего 6 оценок
Разработчик Martin Nester
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sounds Plus",
    "version": "1.0",
    "description": "Add sound effects to Google Chrome with Sounds Plus!",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "author": "Martin",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js",
            "jquery.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "offline_enabled": true,
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "sounds\/*"
    ]
}