Chrome Sound Effects

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

Chrome Sound Effects là gì?

Chrome Sound Effects là một tiện ích mở rộng Chrome được phát triển bởi https://sivasuthan.com, và tính năng chính của nó là "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chrome Sound Effects

Tải xuống các tệp mở rộng Chrome Sound Effects dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chrome Sound Effects Chrome Sound Effects
ID oekengelpdnkfopdkkphkmaacfanbnla
URL Chính Thức https://chromewebstore.google.com/detail/chrome-sound-effects/oekengelpdnkfopdkkphkmaacfanbnla
Mô tả Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.
Kích Thước Tệp 28.84 KB
Số Lần Cài Đặt 1,712
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2018-03-28
Ngày Phát Hành 2018-03-27
Đánh Giá 3.32/5 Tổng số 25 Đánh Giá
Nhà Phát Triển https://sivasuthan.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}