Sounds Plus
Add sound effects to Google Chrome with Sounds Plus!
Vad är Sounds Plus?
Sounds Plus är en Chrome-tillägg utvecklad av Martin Nester, och dess huvudfunktion är "Add sound effects to Google Chrome with Sounds Plus!".
Tilläggsskärmbilder
Ladda ner Sounds Plus-förlängningens CRX-fil
Ladda ner Sounds Plus-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Web browsing can be so quiet and boring. Have some fun with sound effects. With Sounds Plus you can add sound effects the many events, such as creating a new tab, or pasting text. This extension will change your web browsing experience.
Grundläggande Information om Tillägg
Namn | Sounds Plus |
ID | hplkfmjhkdpbiekddokeabgcbpoffoee |
Officiell webbadress | https://chromewebstore.google.com/detail/sounds-plus/hplkfmjhkdpbiekddokeabgcbpoffoee |
Beskrivning | Add sound effects to Google Chrome with Sounds Plus! |
Filstorlek | 4.01 MB |
Antal Installationer | 479 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2021-01-28 |
Publiceringsdatum | 2021-01-28 |
Betyg | 4.17/5 Totalt 6 Betyg |
Utvecklare | Martin Nester |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sounds Plus", "version": "1.0", "description": "Add sound effects to Google Chrome with Sounds Plus!", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png" }, "browser_action": { "default_popup": "popup.html" }, "author": "Martin", "background": { "persistent": false, "scripts": [ "background.js", "jquery.js" ] }, "content_scripts": [ { "js": [ "jquery.js", "content.js" ], "matches": [ "*:\/\/*\/*" ] } ], "offline_enabled": true, "permissions": [ "storage" ], "web_accessible_resources": [ "sounds\/*" ] } |