Chrome Sound Effects
Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.
Wat is Chrome Sound Effects?
Chrome Sound Effects is een Chrome-extensie ontwikkeld door https://sivasuthan.com, en de belangrijkste functie is "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.".
Extensie Screenshots
Download het CRX-bestand van de extensie Chrome Sound Effects
Download Chrome Sound Effects-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Chrome Sound Effects |
ID | oekengelpdnkfopdkkphkmaacfanbnla |
Officiële URL | https://chromewebstore.google.com/detail/chrome-sound-effects/oekengelpdnkfopdkkphkmaacfanbnla |
Beschrijving | Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled. |
Bestandsgrootte | 28.84 KB |
Aantal Installaties | 1,712 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2018-03-28 |
Publicatiedatum | 2018-03-27 |
Beoordeling | 3.32/5 Totaal 25 Beoordelingen |
Ontwikkelaar | https://sivasuthan.com |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |