Sounds Plus
Add sound effects to Google Chrome with Sounds Plus!
Τι είναι το Sounds Plus;
Το Sounds Plus είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Martin Nester, και η κύρια λειτουργία του είναι "Add sound effects to Google Chrome with Sounds Plus!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Sounds Plus
Λήψη αρχείων επέκτασης Sounds Plus σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Sounds Plus |
ID | hplkfmjhkdpbiekddokeabgcbpoffoee |
Επίσημο URL | https://chromewebstore.google.com/detail/sounds-plus/hplkfmjhkdpbiekddokeabgcbpoffoee |
Περιγραφή | Add sound effects to Google Chrome with Sounds Plus! |
Μέγεθος Αρχείου | 4.01 MB |
Αριθμός Εγκαταστάσεων | 479 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2021-01-28 |
Ημερομηνία Δημοσίευσης | 2021-01-28 |
Αξιολόγηση | 4.17/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | Martin Nester |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } |