SoundCloud Likes to Playlist
Extension to add all your SoundCloud Likes to a Playlist in seconds.
Vad är SoundCloud Likes to Playlist?
SoundCloud Likes to Playlist är en Chrome-tillägg utvecklad av https://wb.gy, och dess huvudfunktion är "Extension to add all your SoundCloud Likes to a Playlist in seconds.".
Tilläggsskärmbilder
Ladda ner SoundCloud Likes to Playlist-förlängningens CRX-fil
Ladda ner SoundCloud Likes to Playlist-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
I found that all my SoundCloud likes are public so I built a chrome extension to automate adding all my likes to a Private Playlist :D Grundläggande Information om Tillägg
| Namn | |
| ID | nkndddcbofchmjogahmikkapkaoglkoh |
| Officiell webbadress | https://chromewebstore.google.com/detail/soundcloud-likes-to-playl/nkndddcbofchmjogahmikkapkaoglkoh |
| Beskrivning | Extension to add all your SoundCloud Likes to a Playlist in seconds. |
| Filstorlek | 564 KB |
| Antal Installationer | 3,021 |
| Aktuell Version | 2.2.11 |
| Senast Uppdaterad | 2021-09-02 |
| Publiceringsdatum | 2019-02-12 |
| Betyg | 4.67/5 Totalt 55 Betyg |
| Utvecklare | https://wb.gy |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
| Hjälpsida URL | https://www.ahmd.world/blog/soundcloud-likes-to-playlist-v2 |
| URL till Sekretesspolicy Sidan | https://joinsafqa.com/privacy-policy |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "2.2.11",
"short_name": "__MSG_appShortName__",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images\/icon.png",
"128": "images\/logo-128.png"
},
"background": {
"scripts": [
"scripts\/background.js"
]
},
"browser_action": [],
"omnibox": {
"keyword": "soundcloud"
},
"content_scripts": [
{
"matches": [
"http:\/\/*.soundcloud.com\/*",
"https:\/\/*.soundcloud.com\/*"
],
"css": [
"styles\/contentscript.css"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"webRequest"
],
"web_accessible_resources": [
"images\/*"
]
} | |