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によって開発されたChromeの拡張機能で、その主な機能は「Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.」です。
拡張機能のスクリーンショット
Chrome Sound Effects拡張機能のCRXファイルをダウンロード
Chrome Sound Effects拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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 } |