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 هو إضافة Chrome تم تطويرها بواسطة https://sivasuthan.com، والميزة الرئيسية لها هي "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Chrome Sound Effects
قم بتنزيل ملفات الامتداد Chrome Sound Effects بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 } |