├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOGS.md ├── LICENSE.md ├── README.md ├── compressor-chrome.sh ├── compressor.bat ├── img ├── dumps │ └── 1.0.x-1.1.x │ │ ├── 0527.png │ │ ├── 0728.png │ │ └── scpl.jpg ├── gitdiagram.png └── store listings │ ├── 1.3.0 │ ├── 1.png │ ├── 2-Copy-Copy.png │ ├── 2-Copy.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── Screen Shot 2022-09-24 at 3.23.39 AM.png │ ├── 1.3.7 │ ├── 1.pdn │ ├── 1.png │ └── 2.png │ └── 1.5.0 │ ├── 1.png │ ├── 2.png │ ├── Marquee promo tile (1400x560).png │ ├── Small promo tile (440x280).png │ ├── assets │ └── Untitled.png │ └── screenshots │ ├── Compact.png │ ├── Default.png │ └── Legacy.png └── src ├── assets ├── audio │ ├── fav.svg │ ├── minus.svg │ ├── muted.svg │ ├── next.svg │ ├── pause.svg │ ├── play.svg │ ├── plus.svg │ ├── prev.svg │ ├── repeat.svg │ ├── repeat_all.svg │ ├── repeat_one.svg │ ├── shuffle.svg │ ├── shuffled.svg │ ├── unFav.svg │ └── volume.svg ├── chevron-left.svg ├── chevron-left_dark.svg ├── cog.svg ├── cog_dark.svg ├── dropdown │ ├── caret-down.svg │ ├── caret-down_dark.svg │ ├── caret-right.svg │ └── caret-right_dark.svg ├── file-export.svg ├── followed.svg ├── info.svg ├── list-solid.svg ├── not-following.svg ├── popout.svg ├── regular-moon.svg ├── share │ ├── bsky.svg │ ├── copy-solid.svg │ ├── share.svg │ ├── share_dark.svg │ ├── threads.svg │ └── twitter.svg ├── solid-moon.svg └── window.svg ├── background └── bg.js ├── contents ├── contents.js └── utils.js ├── icon.png ├── manifest-firefox.json ├── manifest.json └── popup ├── embed.css ├── embed.html ├── embed.js ├── init.js ├── keybinder.js ├── player.js ├── popup.css ├── popup.html ├── popup.js ├── settings.css ├── settings.html ├── settings.js ├── style.css └── utils.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ko_fi: sawanese 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/outputs/* 2 | .DS_store -------------------------------------------------------------------------------- /CHANGELOGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/CHANGELOGS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/README.md -------------------------------------------------------------------------------- /compressor-chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/compressor-chrome.sh -------------------------------------------------------------------------------- /compressor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/compressor.bat -------------------------------------------------------------------------------- /img/dumps/1.0.x-1.1.x/0527.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/dumps/1.0.x-1.1.x/0527.png -------------------------------------------------------------------------------- /img/dumps/1.0.x-1.1.x/0728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/dumps/1.0.x-1.1.x/0728.png -------------------------------------------------------------------------------- /img/dumps/1.0.x-1.1.x/scpl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/dumps/1.0.x-1.1.x/scpl.jpg -------------------------------------------------------------------------------- /img/gitdiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/gitdiagram.png -------------------------------------------------------------------------------- /img/store listings/1.3.0/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.0/1.png -------------------------------------------------------------------------------- /img/store listings/1.3.0/2-Copy-Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.0/2-Copy-Copy.png -------------------------------------------------------------------------------- /img/store listings/1.3.0/2-Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.0/2-Copy.png -------------------------------------------------------------------------------- /img/store listings/1.3.0/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.0/2.png -------------------------------------------------------------------------------- /img/store listings/1.3.0/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.0/3.png -------------------------------------------------------------------------------- /img/store listings/1.3.0/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.0/4.png -------------------------------------------------------------------------------- /img/store listings/1.3.0/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.0/5.png -------------------------------------------------------------------------------- /img/store listings/1.3.0/Screen Shot 2022-09-24 at 3.23.39 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.0/Screen Shot 2022-09-24 at 3.23.39 AM.png -------------------------------------------------------------------------------- /img/store listings/1.3.7/1.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.7/1.pdn -------------------------------------------------------------------------------- /img/store listings/1.3.7/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.7/1.png -------------------------------------------------------------------------------- /img/store listings/1.3.7/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.3.7/2.png -------------------------------------------------------------------------------- /img/store listings/1.5.0/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.5.0/1.png -------------------------------------------------------------------------------- /img/store listings/1.5.0/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.5.0/2.png -------------------------------------------------------------------------------- /img/store listings/1.5.0/Marquee promo tile (1400x560).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.5.0/Marquee promo tile (1400x560).png -------------------------------------------------------------------------------- /img/store listings/1.5.0/Small promo tile (440x280).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.5.0/Small promo tile (440x280).png -------------------------------------------------------------------------------- /img/store listings/1.5.0/assets/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.5.0/assets/Untitled.png -------------------------------------------------------------------------------- /img/store listings/1.5.0/screenshots/Compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.5.0/screenshots/Compact.png -------------------------------------------------------------------------------- /img/store listings/1.5.0/screenshots/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.5.0/screenshots/Default.png -------------------------------------------------------------------------------- /img/store listings/1.5.0/screenshots/Legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/img/store listings/1.5.0/screenshots/Legacy.png -------------------------------------------------------------------------------- /src/assets/audio/fav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/fav.svg -------------------------------------------------------------------------------- /src/assets/audio/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/minus.svg -------------------------------------------------------------------------------- /src/assets/audio/muted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/muted.svg -------------------------------------------------------------------------------- /src/assets/audio/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/next.svg -------------------------------------------------------------------------------- /src/assets/audio/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/pause.svg -------------------------------------------------------------------------------- /src/assets/audio/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/play.svg -------------------------------------------------------------------------------- /src/assets/audio/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/plus.svg -------------------------------------------------------------------------------- /src/assets/audio/prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/prev.svg -------------------------------------------------------------------------------- /src/assets/audio/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/repeat.svg -------------------------------------------------------------------------------- /src/assets/audio/repeat_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/repeat_all.svg -------------------------------------------------------------------------------- /src/assets/audio/repeat_one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/repeat_one.svg -------------------------------------------------------------------------------- /src/assets/audio/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/shuffle.svg -------------------------------------------------------------------------------- /src/assets/audio/shuffled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/shuffled.svg -------------------------------------------------------------------------------- /src/assets/audio/unFav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/unFav.svg -------------------------------------------------------------------------------- /src/assets/audio/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/audio/volume.svg -------------------------------------------------------------------------------- /src/assets/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/chevron-left.svg -------------------------------------------------------------------------------- /src/assets/chevron-left_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/chevron-left_dark.svg -------------------------------------------------------------------------------- /src/assets/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/cog.svg -------------------------------------------------------------------------------- /src/assets/cog_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/cog_dark.svg -------------------------------------------------------------------------------- /src/assets/dropdown/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/dropdown/caret-down.svg -------------------------------------------------------------------------------- /src/assets/dropdown/caret-down_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/dropdown/caret-down_dark.svg -------------------------------------------------------------------------------- /src/assets/dropdown/caret-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/dropdown/caret-right.svg -------------------------------------------------------------------------------- /src/assets/dropdown/caret-right_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/dropdown/caret-right_dark.svg -------------------------------------------------------------------------------- /src/assets/file-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/file-export.svg -------------------------------------------------------------------------------- /src/assets/followed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/followed.svg -------------------------------------------------------------------------------- /src/assets/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/info.svg -------------------------------------------------------------------------------- /src/assets/list-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/list-solid.svg -------------------------------------------------------------------------------- /src/assets/not-following.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/not-following.svg -------------------------------------------------------------------------------- /src/assets/popout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/popout.svg -------------------------------------------------------------------------------- /src/assets/regular-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/regular-moon.svg -------------------------------------------------------------------------------- /src/assets/share/bsky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/share/bsky.svg -------------------------------------------------------------------------------- /src/assets/share/copy-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/share/copy-solid.svg -------------------------------------------------------------------------------- /src/assets/share/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/share/share.svg -------------------------------------------------------------------------------- /src/assets/share/share_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/share/share_dark.svg -------------------------------------------------------------------------------- /src/assets/share/threads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/share/threads.svg -------------------------------------------------------------------------------- /src/assets/share/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/share/twitter.svg -------------------------------------------------------------------------------- /src/assets/solid-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/solid-moon.svg -------------------------------------------------------------------------------- /src/assets/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/assets/window.svg -------------------------------------------------------------------------------- /src/background/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/background/bg.js -------------------------------------------------------------------------------- /src/contents/contents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/contents/contents.js -------------------------------------------------------------------------------- /src/contents/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/contents/utils.js -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/manifest-firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/manifest-firefox.json -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/popup/embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/embed.css -------------------------------------------------------------------------------- /src/popup/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/embed.html -------------------------------------------------------------------------------- /src/popup/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/embed.js -------------------------------------------------------------------------------- /src/popup/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/init.js -------------------------------------------------------------------------------- /src/popup/keybinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/keybinder.js -------------------------------------------------------------------------------- /src/popup/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/player.js -------------------------------------------------------------------------------- /src/popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/popup.css -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/popup.js -------------------------------------------------------------------------------- /src/popup/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/settings.css -------------------------------------------------------------------------------- /src/popup/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/settings.html -------------------------------------------------------------------------------- /src/popup/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/settings.js -------------------------------------------------------------------------------- /src/popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/style.css -------------------------------------------------------------------------------- /src/popup/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S4WA/SoundCloud-Player/HEAD/src/popup/utils.js --------------------------------------------------------------------------------