Chrome Sound Effects

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

Apa itu Chrome Sound Effects?

Chrome Sound Effects adalah ekstensi Chrome yang dikembangkan oleh https://sivasuthan.com, dan fitur utamanya adalah "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Chrome Sound Effects

Unduh file ekstensi Chrome Sound Effects dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Chrome Sound Effects Chrome Sound Effects
ID oekengelpdnkfopdkkphkmaacfanbnla
URL Resmi https://chromewebstore.google.com/detail/chrome-sound-effects/oekengelpdnkfopdkkphkmaacfanbnla
Deskripsi Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.
Ukuran File 28.84 KB
Jumlah Instalasi 1,712
Versi Saat Ini 1.2
Terakhir Diperbarui 2018-03-28
Tanggal Publikasi 2018-03-27
Penilaian 3.32/5 Total 25 Penilaian
Pengembang https://sivasuthan.com
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
}