Soundcloud Download
This extension will let you download any track from Soundcloud.
Soundcloud Downloadคืออะไร?
Soundcloud Download เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tenpi และคุณลักษณะหลักของมันคือ "This extension will let you download any track from Soundcloud."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Soundcloud Download
ดาวน์โหลดไฟล์ส่วนขยาย Soundcloud Download ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a simple extension that adds a download button to Soundcloud pages. Features: -Download individual tracks (track page) -Download all of a user's tracks (user page) -Download all tracks in a playlist (playlist page) -Download tracks/playlists on the search page -Download the song cover art images -Adds metadata such as song title and cover art Sometimes you may need to refresh the page in order for the button to show up. Bugs/Feature Requests: You can open an issue on my GitHub repository here: https://github.com/Tenpi/soundcloud-download
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | alonjekfomgihkmbejlpnohliidafdep |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/soundcloud-download/alonjekfomgihkmbejlpnohliidafdep |
คำอธิบาย | This extension will let you download any track from Soundcloud. |
ขนาดไฟล์ | 1.15 MB |
จำนวนการติดตั้ง | 50,000 |
เวอร์ชันปัจจุบัน | 0.3.6 |
อัปเดตครั้งล่าสุด | 2022-05-01 |
วันที่เผยแพร่ | 2020-11-28 |
คะแนน | 4.59/5 รวมทั้งหมด 70 คะแนน |
ผู้พัฒนา | Tenpi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/Tenpi/soundcloud-extension |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Soundcloud Download", "description": "This extension will let you download any track from Soundcloud.", "version": "0.3.6", "content_scripts": [ { "matches": [ "https:\/\/*.soundcloud.com\/*" ], "css": [ "styles.css" ], "js": [ "content-script.js" ] } ], "background": { "scripts": [ "browser-id3-writer.js", "crunker.js", "background.js" ], "persistent": true }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "popup.html" }, "icons": { "16": "assets\/icon.png", "48": "assets\/icon-48.png", "128": "assets\/icon-128.png" }, "permissions": [ "https:\/\/*.soundcloud.com\/*", "tabs", "webRequest", "downloads", "webNavigation", "storage" ], "web_accessible_resources": [ "assets\/*" ] } |