Chrome Sound Effects

Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.

什么是Chrome Sound Effects?

Chrome Sound Effects是由https://sivasuthan.com开发的Chrome扩展程序,该扩展的主要功能是“Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.”。

扩展截图

screenshot

下载Chrome Sound Effects扩展crx文件

下载Chrome Sound Effects扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        I created this extension to energize the experience of browsing the web. It adds sound effects to user triggered events like creating and closing tabs, switching tabs, scrolling, navigating back and forward, etc. All the effects can be manually disabled by clicking the extension icon. 
I am working on adding much more nicer sounds. This is my first extension, so please leave feedback for future versions. 

Thank you for checking out the extension.

Contact me by visiting http://sivasuthan.com.                    

扩展基本信息

名称 Chrome Sound Effects Chrome Sound Effects
ID oekengelpdnkfopdkkphkmaacfanbnla
官方URL https://chromewebstore.google.com/detail/chrome-sound-effects/oekengelpdnkfopdkkphkmaacfanbnla
简介 Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.
文件大小 28.84 KB
安装次数 1,712
当前版本 1.2
更新时间 2018-03-28
上架时间 2018-03-27
评分 3.32/5 共25次评分
开发者 https://sivasuthan.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Sound Effects",
    "version": "1.2",
    "description": "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "bookmarks",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "options.html"
    },
    "manifest_version": 2
}