SoundCloud Cut & Share
Cut SoundCloud tracks and share your favorite parts.
Τι είναι το SoundCloud Cut & Share;
Το SoundCloud Cut & Share είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Awesome Extensions, και η κύρια λειτουργία του είναι "Cut SoundCloud tracks and share your favorite parts.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SoundCloud Cut & Share
Λήψη αρχείων επέκτασης SoundCloud Cut & Share σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Cut SoundCloud tracks into segments and share them with your friends. Extension works only on the page with track and a wafeform! - Unlimited cuts - Synced history of all your segments - Easy to share - Easy to add shared segments to your own collection Does not gather any personal information Does not have access to browsing history Does not work in incognito mode Has access only to soundcloud.com domain and to a homepage. Free. Safe. Stable. I'd love to hear your feedback. Thanks!
Βασικές Πληροφορίες Επέκτασης
Όνομα | SoundCloud Cut & Share |
ID | eegiainfcjdgheoklhghccnoillnlpjc |
Επίσημο URL | https://chromewebstore.google.com/detail/soundcloud-cut-share/eegiainfcjdgheoklhghccnoillnlpjc |
Περιγραφή | Cut SoundCloud tracks and share your favorite parts. |
Μέγεθος Αρχείου | 202 KB |
Αριθμός Εγκαταστάσεων | 94 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2023-01-09 |
Ημερομηνία Δημοσίευσης | 2022-07-25 |
Αξιολόγηση | 4.50/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Awesome Extensions |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://soundcloudshare.onrender.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://soundcloudshare.onrender.com |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SoundCloud Cut & Share", "version": "1.0.2", "action": { "default_icon": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "default_popup": "popup\/index.html", "default_title": "SoundCloud Cut & Share" }, "description": "Cut SoundCloud tracks and share your favorite parts.", "icons": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "author": "Ilya Zaytsev", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "js": [ "content\/content-script.js" ], "matches": [ "https:\/\/*.soundcloud.com\/*", "https:\/\/soundcloudshare.onrender.com\/*" ] } ], "incognito": "not_allowed", "offline_enabled": false, "host_permissions": [ "https:\/\/soundcloud.com\/" ], "permissions": [ "storage" ], "short_name": "Soundcloud Cut & Share" } |