SoundCloud Downloader v2

Adds download buttons for tracks on soundcloud.com

SoundCloud Downloader v2とは何ですか?

SoundCloud Downloader v2はalina.merkelszによって開発されたChromeの拡張機能で、その主な機能は「Adds download buttons for tracks on soundcloud.com」です。

拡張機能のスクリーンショット

screenshot
screenshot

SoundCloud Downloader v2拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}