SoundCloud Downloader v2

Adds download buttons for tracks on soundcloud.com

Τι είναι το SoundCloud Downloader v2;

Το SoundCloud Downloader v2 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alina.merkelsz, και η κύρια λειτουργία του είναι "Adds download buttons for tracks on soundcloud.com".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SoundCloud Downloader v2

Λήψη αρχείων επέκτασης SoundCloud Downloader v2 σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This Add-on allows you to easily download tracks off of SoundCloud, by the press of a button. Unlike other Add-ons, this does not use any 3rd party services to perform the download - only SoundCloud's own APIs.
When you hit 'Download', we will set the appropriate metadata information: Title, Artists, Album and Artwork. If the track is downloaded as part of an album, we will also set the track number.
If you are a Go+ user, we will download the higher quality version (.m4a file) for you.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα SoundCloud Downloader v2 SoundCloud Downloader v2
ID fbknbpgcakhanbhcogebgfbapkgcdloh
Επίσημο URL https://chrome.google.com/webstore/detail/soundcloud-downloader-v2/fbknbpgcakhanbhcogebgfbapkgcdloh
Περιγραφή Adds download buttons for tracks on soundcloud.com
Μέγεθος Αρχείου 62.94 KB
Αριθμός Εγκαταστάσεων 20,000
Τρέχουσα Έκδοση 2022.06.12
Τελευταία Ενημέρωση 2022-06-13
Ημερομηνία Δημοσίευσης 2021-01-21
Αξιολόγηση 4.48/5 Συνολικά 65 Αξιολογήσεις
Προγραμματιστής alina.merkelsz
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "author": "NotTobi",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "install.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Adds download buttons for tracks on soundcloud.com",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png"
    },
    "manifest_version": 2,
    "name": "SoundCloud Downloader v2",
    "options_ui": {
        "page": "settings.html"
    },
    "page_action": {
        "default_icon": {
            "128": "icons\/icon-128.png",
            "48": "icons\/icon-48.png",
            "64": "icons\/icon-64.png",
            "96": "icons\/icon-96.png"
        },
        "default_title": "Soundcloud Downloader",
        "show_matches": [
            "*:\/\/*.soundcloud.com\/*"
        ]
    },
    "permissions": [
        "downloads",
        "webRequest",
        "storage",
        "webRequestBlocking",
        "*:\/\/*.soundcloud.com\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2022.06.12",
    "web_accessible_resources": [
        "js\/repostBlocker.js"
    ]
}