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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chrome Sound Effects एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 } |