đŸŸĸ Spotify Free | Ad Block/Skip đŸŽļ [Windows]

New Kid

Well-known member
  • Sep 28, 2020
    388
    540
    93
    EK02x9w.png


    āļ¸āˇšāļšāˇ™āļąāˇŠ Spotify app āļ‘āļš āļ­āˇ”āļŊ āˇƒāˇ’āļēāļŊ⎔āļ¸ ads block āļšāļģāļą āļ…āļ­āļģ āļ•āļąāˇ‘āļ¸ track āļ‘āļšāļšāˇŠ ⎃āļŗāˇ„āˇ skip āļšāˇ’āļģ⎓āļ¸āˇš āļ´āˇ„āˇƒāˇ”āļšāļ¸āļ­āˇŠ āļŊāļļāˇ āļ¯āˇ™āļąāˇ€āˇ.​

    âš ī¸ āļ¸āˇšāļš Windows ⎀āļŊ Spotify Desktop Application āļ‘āļš āˇƒāļŗāˇ„āˇ āļ´āļ¸āļĢāļē⎒. Microsoft Store version āļ‘āļšāļ§ āļąāˇ™āļ¸āˇ™āļē⎒.

    ⎀⎐āļ¯āļœāļ­āˇŠ
    : āļ¸āˇšāļš install āļšāļģāļąāˇŠāļą āļšāļŊ⎒āļąāˇŠ Windows āˇƒāˇ„ Spotify, update āļšāļģāļŊāļ¯ āļ­āˇ’āļē⎙āļąāˇŠāļąāˇš āļšāˇ’āļēāļŊ āļļāļŊāļąāˇŠāļą.

    Install āļšāļģāļą āˇ€āˇ’āļ¯āˇ’⎄
    • āļ¸āˇš Batch File āļ‘āļš download āļšāļģāļŊāˇ run āļšāļģāļąāˇŠāļą.
    euZ0AoPl.png


    āļ‘⎄⎙āļ¸ āļąāˇāļ­āˇŠāļąāļ¸āˇŠ,
    • āļ´āˇ„āļŊ⎒āļąāˇŠ āļ­āˇ’āļē⎙āļą command āļ‘āļš PowerShell āļ‘āļšāˇš run āļšāļģāļąāˇŠāļą.
    Code:
    Invoke-WebRequest -UseBasicParsing 'https://raw.githubusercontent.com/mrpond/BlockTheSpot/master/install.ps1' | Invoke-Expression

    ⁘⁘⁘⁘⁘

    4qRJCy4l.png


    • āļ’ āļ¯āˇ™āļšāˇ™āļąāˇŠ āļ¸āˇœāļą āˇ€āˇ’āļ¯āˇ’⎄ āļšāļŊāļ­āˇŠ āļ”āļē highlight āļšāļģāļŊāˇ āļ­āˇ’āļē⎙āļą āļ­āˇāļąāļ§ āļ†āˇ€āļ¸ "y" press āļšāļģāļŊāˇ Enter āļšāļģāļąāˇŠāļą.
    ⎀⎐āļŠāˇš ⎄āļģ⎒. āļ…āļąāˇŠāļ­āˇ’āļ¸āļ§ āļ•āļą key āļ‘āļšāļšāˇŠ press āļšāļŊāˇāļ¸ CMD āļ‘āļš close ⎀⎙āļŊāˇ āļēāļē⎒.

    ⎀⎐āļŠāˇ’ āˇ€āˇ’āˇƒāˇŠāļ­āļģ ⎃āļŗāˇ„āˇ āļ¸āˇš GitHub repository āļ‘āļšāļ§ āļēāļąāˇŠāļą.

    ((( 🎧â™Ēâ™Ē😊 )))

    PS On an unrelated note,
    @The Kingslayer, thank you for what you did recently.
     
    Last edited:

    KandyMalli

    Well-known member
  • Feb 15, 2018
    4,320
    3,952
    113
    zip files wagayak extract karanawa balagena use karanna. virus / files encrypt wenna puluwan

    Code:
    # Ignore errors from `Stop-Process`
    $PSDefaultParameterValues['Stop-Process:ErrorAction'] = 'SilentlyContinue'
    
    write-host @'
    *****************
    @mrpond message:
    #Thailand #ThaiProtest #ThailandProtest #freeYOUTH
    Please retweet these hashtag, help me stop dictator government!
    *****************
    '@
    
    write-host @'
    *****************
    Author: @Nuzair46
    *****************
    '@
    
    $SpotifyDirectory = "$env:APPDATA\Spotify"
    $SpotifyExecutable = "$SpotifyDirectory\Spotify.exe"
    $SpotifyApps = "$SpotifyDirectory\Apps"
    
    Write-Host 'Stopping Spotify...'`n
    Stop-Process -Name Spotify
    Stop-Process -Name SpotifyWebHelper
    
    if ($PSVersionTable.PSVersion.Major -ge 7)
    {
        Import-Module Appx -UseWindowsPowerShell
    }
    
    if (Get-AppxPackage -Name SpotifyAB.SpotifyMusic) {
      Write-Host @'
    The Microsoft Store version of Spotify has been detected which is not supported.
    '@`n
      $ch = Read-Host -Prompt "Uninstall Spotify Windows Store edition (Y/N) "
      if ($ch -eq 'y'){
         Write-Host @'
    Uninstalling Spotify.
    '@`n
         Get-AppxPackage -Name SpotifyAB.SpotifyMusic | Remove-AppxPackage
      } else{
         Write-Host @'
    Exiting...
    '@`n
         Pause
         exit
        }
    }
    
    Push-Location -LiteralPath $env:TEMP
    try {
      # Unique directory name based on time
      New-Item -Type Directory -Name "BlockTheSpot-$(Get-Date -UFormat '%Y-%m-%d_%H-%M-%S')" `
      | Convert-Path `
      | Set-Location
    } catch {
      Write-Output $_
      Pause
      exit
    }
    
    Write-Host 'Downloading latest patch (chrome_elf.zip)...'`n
    $webClient = New-Object -TypeName System.Net.WebClient
    try {
      $webClient.DownloadFile(
        # Remote file URL
        'https://github.com/mrpond/BlockTheSpot/releases/latest/download/chrome_elf.zip',
        # Local file path
        "$PWD\chrome_elf.zip"
      )
    } catch {
      Write-Output $_
      Sleep
    }
    <#
    try {
      $webClient.DownloadFile(
        # Remote file URL
        'https://github.com/mrpond/BlockTheSpot/files/5969916/zlink.zip',
        # Local file path
        "$PWD\zlink.zip"
      )
    } catch {
      Write-Output $_
      Sleep
    }
    try {
      $webClient.DownloadFile(
        # Remote file URL
        'https://github.com/mrpond/BlockTheSpot/files/6234124/xpui.zip',
        # Local file path
        "$PWD\xpui.zip"
      )
    } catch {
      Write-Output $_
      Sleep
    }
    #>
    Expand-Archive -Force -LiteralPath "$PWD\chrome_elf.zip" -DestinationPath $PWD
    Remove-Item -LiteralPath "$PWD\chrome_elf.zip"
    <#
    Expand-Archive -Force -LiteralPath "$PWD\zlink.zip" -DestinationPath $PWD
    Remove-Item -LiteralPath "$PWD\zlink.zip"
    Expand-Archive -Force -LiteralPath "$PWD\xpui.zip" -DestinationPath $PWD
    Remove-Item -LiteralPath "$PWD\xpui.zip"
    #>
    $spotifyInstalled = (Test-Path -LiteralPath $SpotifyExecutable)
    if (-not $spotifyInstalled) {
      Write-Host @'
    Spotify installation was not detected.
    Downloading Latest Spotify full setup, please wait...
    '@
      try {
        $webClient.DownloadFile(
          # Remote file URL
          'https://download.scdn.co/SpotifyFullSetup.exe',
          # Local file path
          "$PWD\SpotifyFullSetup.exe"
        )
      } catch {
        Write-Output $_
        Pause
        exit
      }
      mkdir $SpotifyDirectory >$null 2>&1
      Write-Host 'Running installation...'
      Start-Process -FilePath "$PWD\SpotifyFullSetup.exe"
      Write-Host 'Stopping Spotify...Again'
      while ((Get-Process -name Spotify -ErrorAction SilentlyContinue) -eq $null){
         #waiting until installation complete
         }
      Stop-Process -Name Spotify >$null 2>&1
      Stop-Process -Name SpotifyWebHelper >$null 2>&1
      Stop-Process -Name SpotifyFullSetup >$null 2>&1
    }
    
    if (!(test-path $SpotifyDirectory/chrome_elf.dll.bak)){
        move $SpotifyDirectory\chrome_elf.dll $SpotifyDirectory\chrome_elf.dll.bak >$null 2>&1
    }
    
    Write-Host 'Patching Spotify...'
    $patchFiles = "$PWD\chrome_elf.dll", "$PWD\config.ini"
    <#
    $remup = "$PWD\zlink.spa"
    $uipat = "$PWD\xpui.spa"
    #>
    Copy-Item -LiteralPath $patchFiles -Destination "$SpotifyDirectory"
    <#
    $ch = Read-Host -Prompt "Optional - Remove Upgrade Button. (Y/N) "
    if ($ch -eq 'y'){
        move $SpotifyApps\zlink.spa $SpotifyApps\zlink.spa.bak >$null 2>&1
        Copy-Item -LiteralPath $remup -Destination "$SpotifyApps"
    } else{
         Write-Host @'
    Won't remove Upgrade Button.
    '@`n
    }
    
    $ch = Read-Host -Prompt "Change Alpha UI back to Old UI. (BTS only supports Old UI). (Y/N) "
    if ($ch -eq 'y'){
        move $SpotifyApps\xpui.spa $SpotifyApps\xpui.spa.bak >$null 2>&1
        Copy-Item -LiteralPath $uipat -Destination "$SpotifyApps"
    } else{
         Write-Host @'
    UI isn't changed.
    '@`n
    }
    #>
    
    $ch = Read-Host -Prompt "Optional - Remove ad placeholder and upgrade button. (Experimental) (Y/N) "
    if ($ch -eq 'y') {
        Add-Type -Assembly 'System.IO.Compression.FileSystem'
    
        Copy-Item -Path "$SpotifyApps\xpui.spa" -Destination "$SpotifyApps\xpui.spa.bak"
    
        $zip = [System.IO.Compression.ZipFile]::Open("$SpotifyApps\xpui.spa", 'update')
        $entry = $zip.GetEntry('xpui.js')
    
        # Extract xpui.js from zip to memory
        $reader = New-Object System.IO.StreamReader($entry.Open())
        $xpuiContents = $reader.ReadToEnd()
        $reader.Close()
    
        # Replace ".ads.leaderboard.isEnabled" + separator - '}' or ')'
        # With ".ads.leaderboard.isEnabled&&false" + separator
        $xpuiContents = $xpuiContents -replace '(\.ads\.leaderboard\.isEnabled)(}|\))', '$1&&false$2'
        
        # Delete ".createElement(XX,{onClick:X,className:XX.X.UpgradeButton}),X()"
        $xpuiContents = $xpuiContents -replace '\.createElement\([^.,{]+,{onClick:[^.,]+,className:[^.]+\.[^.]+\.UpgradeButton}\),[^.(]+\(\)', ''
        
        # Rewrite it to the zip
        $writer = New-Object System.IO.StreamWriter($entry.Open())
        $writer.BaseStream.SetLength(0)
        $writer.Write($xpuiContents)
        $writer.Close()
    
        $zip.Dispose()
    } else {
         Write-Host @'
    Won't remove ad placeholder and upgrade button.
    '@`n
    }
    
    $tempDirectory = $PWD
    Pop-Location
    
    Remove-Item -Recurse -LiteralPath $tempDirectory 
    
    Write-Host 'Patching Complete, starting Spotify...'
    Start-Process -WorkingDirectory $SpotifyDirectory -FilePath $SpotifyExecutable
    Write-Host 'Done.'
    
    write-host @'
    *****************
    @mrpond message:
    #Thailand #ThaiProtest #ThailandProtest #freeYOUTH
    Please retweet these hashtag, help me stop dictator government!
    *****************
    '@
    
    exit
     
    • Like
    Reactions: NRTG

    New Kid

    Well-known member
  • Sep 28, 2020
    388
    540
    93
    zip files wagayak extract karanawa balagena use karanna. virus / files encrypt wenna puluwan

    Code:
    # Ignore errors from `Stop-Process`
    $PSDefaultParameterValues['Stop-Process:ErrorAction'] = 'SilentlyContinue'
    
    write-host @'
    *****************
    @mrpond message:
    #Thailand #ThaiProtest #ThailandProtest #freeYOUTH
    Please retweet these hashtag, help me stop dictator government!
    *****************
    '@
    
    write-host @'
    *****************
    Author: @Nuzair46
    *****************
    '@
    
    $SpotifyDirectory = "$env:APPDATA\Spotify"
    $SpotifyExecutable = "$SpotifyDirectory\Spotify.exe"
    $SpotifyApps = "$SpotifyDirectory\Apps"
    
    Write-Host 'Stopping Spotify...'`n
    Stop-Process -Name Spotify
    Stop-Process -Name SpotifyWebHelper
    
    if ($PSVersionTable.PSVersion.Major -ge 7)
    {
        Import-Module Appx -UseWindowsPowerShell
    }
    
    if (Get-AppxPackage -Name SpotifyAB.SpotifyMusic) {
      Write-Host @'
    The Microsoft Store version of Spotify has been detected which is not supported.
    '@`n
      $ch = Read-Host -Prompt "Uninstall Spotify Windows Store edition (Y/N) "
      if ($ch -eq 'y'){
         Write-Host @'
    Uninstalling Spotify.
    '@`n
         Get-AppxPackage -Name SpotifyAB.SpotifyMusic | Remove-AppxPackage
      } else{
         Write-Host @'
    Exiting...
    '@`n
         Pause
         exit
        }
    }
    
    Push-Location -LiteralPath $env:TEMP
    try {
      # Unique directory name based on time
      New-Item -Type Directory -Name "BlockTheSpot-$(Get-Date -UFormat '%Y-%m-%d_%H-%M-%S')" `
      | Convert-Path `
      | Set-Location
    } catch {
      Write-Output $_
      Pause
      exit
    }
    
    Write-Host 'Downloading latest patch (chrome_elf.zip)...'`n
    $webClient = New-Object -TypeName System.Net.WebClient
    try {
      $webClient.DownloadFile(
        # Remote file URL
        'https://github.com/mrpond/BlockTheSpot/releases/latest/download/chrome_elf.zip',
        # Local file path
        "$PWD\chrome_elf.zip"
      )
    } catch {
      Write-Output $_
      Sleep
    }
    <#
    try {
      $webClient.DownloadFile(
        # Remote file URL
        'https://github.com/mrpond/BlockTheSpot/files/5969916/zlink.zip',
        # Local file path
        "$PWD\zlink.zip"
      )
    } catch {
      Write-Output $_
      Sleep
    }
    try {
      $webClient.DownloadFile(
        # Remote file URL
        'https://github.com/mrpond/BlockTheSpot/files/6234124/xpui.zip',
        # Local file path
        "$PWD\xpui.zip"
      )
    } catch {
      Write-Output $_
      Sleep
    }
    #>
    Expand-Archive -Force -LiteralPath "$PWD\chrome_elf.zip" -DestinationPath $PWD
    Remove-Item -LiteralPath "$PWD\chrome_elf.zip"
    <#
    Expand-Archive -Force -LiteralPath "$PWD\zlink.zip" -DestinationPath $PWD
    Remove-Item -LiteralPath "$PWD\zlink.zip"
    Expand-Archive -Force -LiteralPath "$PWD\xpui.zip" -DestinationPath $PWD
    Remove-Item -LiteralPath "$PWD\xpui.zip"
    #>
    $spotifyInstalled = (Test-Path -LiteralPath $SpotifyExecutable)
    if (-not $spotifyInstalled) {
      Write-Host @'
    Spotify installation was not detected.
    Downloading Latest Spotify full setup, please wait...
    '@
      try {
        $webClient.DownloadFile(
          # Remote file URL
          'https://download.scdn.co/SpotifyFullSetup.exe',
          # Local file path
          "$PWD\SpotifyFullSetup.exe"
        )
      } catch {
        Write-Output $_
        Pause
        exit
      }
      mkdir $SpotifyDirectory >$null 2>&1
      Write-Host 'Running installation...'
      Start-Process -FilePath "$PWD\SpotifyFullSetup.exe"
      Write-Host 'Stopping Spotify...Again'
      while ((Get-Process -name Spotify -ErrorAction SilentlyContinue) -eq $null){
         #waiting until installation complete
         }
      Stop-Process -Name Spotify >$null 2>&1
      Stop-Process -Name SpotifyWebHelper >$null 2>&1
      Stop-Process -Name SpotifyFullSetup >$null 2>&1
    }
    
    if (!(test-path $SpotifyDirectory/chrome_elf.dll.bak)){
        move $SpotifyDirectory\chrome_elf.dll $SpotifyDirectory\chrome_elf.dll.bak >$null 2>&1
    }
    
    Write-Host 'Patching Spotify...'
    $patchFiles = "$PWD\chrome_elf.dll", "$PWD\config.ini"
    <#
    $remup = "$PWD\zlink.spa"
    $uipat = "$PWD\xpui.spa"
    #>
    Copy-Item -LiteralPath $patchFiles -Destination "$SpotifyDirectory"
    <#
    $ch = Read-Host -Prompt "Optional - Remove Upgrade Button. (Y/N) "
    if ($ch -eq 'y'){
        move $SpotifyApps\zlink.spa $SpotifyApps\zlink.spa.bak >$null 2>&1
        Copy-Item -LiteralPath $remup -Destination "$SpotifyApps"
    } else{
         Write-Host @'
    Won't remove Upgrade Button.
    '@`n
    }
    
    $ch = Read-Host -Prompt "Change Alpha UI back to Old UI. (BTS only supports Old UI). (Y/N) "
    if ($ch -eq 'y'){
        move $SpotifyApps\xpui.spa $SpotifyApps\xpui.spa.bak >$null 2>&1
        Copy-Item -LiteralPath $uipat -Destination "$SpotifyApps"
    } else{
         Write-Host @'
    UI isn't changed.
    '@`n
    }
    #>
    
    $ch = Read-Host -Prompt "Optional - Remove ad placeholder and upgrade button. (Experimental) (Y/N) "
    if ($ch -eq 'y') {
        Add-Type -Assembly 'System.IO.Compression.FileSystem'
    
        Copy-Item -Path "$SpotifyApps\xpui.spa" -Destination "$SpotifyApps\xpui.spa.bak"
    
        $zip = [System.IO.Compression.ZipFile]::Open("$SpotifyApps\xpui.spa", 'update')
        $entry = $zip.GetEntry('xpui.js')
    
        # Extract xpui.js from zip to memory
        $reader = New-Object System.IO.StreamReader($entry.Open())
        $xpuiContents = $reader.ReadToEnd()
        $reader.Close()
    
        # Replace ".ads.leaderboard.isEnabled" + separator - '}' or ')'
        # With ".ads.leaderboard.isEnabled&&false" + separator
        $xpuiContents = $xpuiContents -replace '(\.ads\.leaderboard\.isEnabled)(}|\))', '$1&&false$2'
      
        # Delete ".createElement(XX,{onClick:X,className:XX.X.UpgradeButton}),X()"
        $xpuiContents = $xpuiContents -replace '\.createElement\([^.,{]+,{onClick:[^.,]+,className:[^.]+\.[^.]+\.UpgradeButton}\),[^.(]+\(\)', ''
      
        # Rewrite it to the zip
        $writer = New-Object System.IO.StreamWriter($entry.Open())
        $writer.BaseStream.SetLength(0)
        $writer.Write($xpuiContents)
        $writer.Close()
    
        $zip.Dispose()
    } else {
         Write-Host @'
    Won't remove ad placeholder and upgrade button.
    '@`n
    }
    
    $tempDirectory = $PWD
    Pop-Location
    
    Remove-Item -Recurse -LiteralPath $tempDirectory
    
    Write-Host 'Patching Complete, starting Spotify...'
    Start-Process -WorkingDirectory $SpotifyDirectory -FilePath $SpotifyExecutable
    Write-Host 'Done.'
    
    write-host @'
    *****************
    @mrpond message:
    #Thailand #ThaiProtest #ThailandProtest #freeYOUTH
    Please retweet these hashtag, help me stop dictator government!
    *****************
    '@
    
    exit
    āļ¸āˇ™āļąāˇŠāļą āļ’ ZIP files.
    chrome_elf.zip - VirusTotal
    zlink.zip - VirusTotal
    xpui.zip - VirusTotal
     
    • Like
    Reactions: NRTG

    New Kid

    Well-known member
  • Sep 28, 2020
    388
    540
    93
    āļ¸āˇš ⎀⎐āļŠāˇš manually āļšāļģāļąāˇŠāļąāļ­āˇŠ āļ´āˇ”⎅⎔⎀āļąāˇŠ.

    1. Spotify installation folder āļ‘āļšāļ§ āļēāļąāˇŠāļą. %APPDATA%\Spotify
    2. āļ¸āˇ™āļ­āļąāˇ’āļąāˇŠ chrome_elf.zip āļ‘āļš download āļšāļģāļœāļąāˇŠāļą.
    3. āļ’āļš unzip āļšāļģāļŊāˇ chrome_elf.dll āˇƒāˇ„ config.ini āļšāˇ’āļēāļą files replace āļšāļģāļąāˇŠāļą.

    ⎄⎐āļļ⎐āļē⎒ āļ‘⎄⎙āļ¸ āļšāļŊāˇāļ¸ ad placeholder āļ‘āļšāļšāˇŠ āļ‰āļ­āˇ”āļģ⎔ ⎀⎙āļąāˇ€āˇ.

    vBetdPsl.png


    āļ’āļš āļ…āļē⎒āļąāˇŠ āļšāļģāļąāˇŠāļą āļ¸āˇ™āˇ„⎙āļ¸ āļ¯āˇ™āļēāļšāˇŠ āļšāļģāļąāˇŠāļą āļ´āˇ”⎅⎔⎀āļąāˇŠ.

    4. Sandbox āļ‘āļšāļš āˇ„āˇ virtual machine āļ‘āļšāļš Batch file āļ‘āļš run āļšāļģāļąāˇŠāļą.
    5. Spotify installation folder āļ‘āļšāˇš Apps āļšāˇ’āļēāļą folder āļ‘āļšāļ§ āļēāļąāˇŠāļą. %APPDATA%\Spotify\Apps
    6. xpui.spa āļšāˇ’āļēāļą file āļ‘āļšāˇ™āļąāˇŠ original Spotify installation āļ‘āļšāˇš āļ­āˇ’āļē⎙āļą file āļ‘āļš replace āļšāļģāļąāˇŠāļą.
     
    Last edited:

    New Kid

    Well-known member
  • Sep 28, 2020
    388
    540
    93
    āļ¸āˇšāļš āˇ€āˇāļŠāļ¯
    āļ”āˇ€āˇŠ. Spotify latest version 1.1.69.612 āļ‘āļšāˇ™āļ­āˇŠ test āļšāļģāļŊāˇ āļ­āˇ’āļē⎙āļąāˇŠāļąāˇš.
     
    Last edited:
    • Like
    Reactions: iworld

    Heshan Daminda

    Well-known member
  • Mar 13, 2009
    45,845
    1
    100,271
    113
    33
    Kalutara
    āļ¸āˇš ⎀⎐āļŠāˇš manually āļšāļģāļąāˇŠāļąāļ­āˇŠ āļ´āˇ”⎅⎔⎀āļąāˇŠ.

    1. Spotify installation folder āļ‘āļšāļ§ āļēāļąāˇŠāļą. %APPDATA%\Spotify
    2. āļ¸āˇ™āļ­āļąāˇ’āļąāˇŠ chrome_elf.zip āļ‘āļš download āļšāļģāļœāļąāˇŠāļą.
    3. āļ’āļš unzip āļšāļģāļŊāˇ chrome_elf.dll āˇƒāˇ„ config.ini āļšāˇ’āļēāļą files replace āļšāļģāļąāˇŠāļą.

    ⎄⎐āļļ⎐āļē⎒ āļ‘⎄⎙āļ¸ āļšāļŊāˇāļ¸ ad placeholder āļ‘āļšāļšāˇŠ āļ‰āļ­āˇ”āļģ⎔ ⎀⎙āļąāˇ€āˇ.

    vBetdPsl.png


    āļ’āļš āļ…āļē⎒āļąāˇŠ āļšāļģāļąāˇŠāļą āļ¸āˇ™āˇ„⎙āļ¸ āļ¯āˇ™āļēāļšāˇŠ āļšāļģāļąāˇŠāļą āļ´āˇ”⎅⎔⎀āļąāˇŠ.

    4. Sandbox āļ‘āļšāļš āˇ„āˇ virtual machine āļ‘āļšāļš Batch file āļ‘āļš run āļšāļģāļąāˇŠāļą.
    5. Spotify installation folder āļ‘āļšāˇš Apps āļšāˇ’āļēāļą folder āļ‘āļšāļ§ āļēāļąāˇŠāļą. %APPDATA%\Spotify\Apps
    6. xpui.spa āļšāˇ’āļēāļą file āļ‘āļšāˇ™āļąāˇŠ original Spotify installation āļ‘āļšāˇš āļ­āˇ’āļē⎙āļą file āļ‘āļš replace āļšāļģāļąāˇŠāļą.
    āˇ„āˇāļąāˇš... āļ…āļąāˇŠāļą āļ āˇāļŊ⎒ āļ´āˇ–āļ­āˇŠ.. 😍😍😍
     
    • Like
    Reactions: New Kid

    ela

    Well-known member
  • Jul 4, 2006
    6,425
    4,297
    113
    N/A
    Ay bun, rassawak karana set ekata 500 gewanna puluwan ne
    bayakut nahane hack wei kiyala.
     

    New Kid

    Well-known member
  • Sep 28, 2020
    388
    540
    93
    āˇ„āˇāļąāˇš... āļ…āļąāˇŠāļą āļ āˇāļŊ⎒ āļ´āˇ–āļ­āˇŠ.. 😍😍😍
    āˇ„āˇŠāļ¸āˇŠāļ¸āˇŠ... :yes:
    Wiz Khalifa - See You Again ft. Charlie Puth
    We Don't Talk Anymore (feat. Selena Gomez)
    Attention
    One Call Away
    Gabby Barrett - I Hope (ft. Charlie Puth)
    āļ­āļ¸āļē⎒ āļ¸āļ¸ āļšāˇāļ¸āļ­āˇ’āļ¸. :love:
     
    Last edited:

    New Kid

    Well-known member
  • Sep 28, 2020
    388
    540
    93
    Ay bun, rassawak karana set ekata 500 gewanna puluwan ne
    bayakut nahane hack wei kiyala.
    āļ¯āˇāļąāļ§āļąāļ¸āˇŠ āļ‘⎄⎙āļ¸ āļ´āˇŠâ€āļģ⎁⎊āļąāļēāļšāˇŠ āļąāˇāˇ„⎐.
    āļšāˇœāˇ„āˇœāļ¸ āˇ€āˇ”āļąāļ­āˇŠ ⎃āļŊ⎊āļŊ⎒ āļ¯āˇ“āļŊ Premium plan āļ‘āļšāļšāˇŠ āļœāļąāˇŠāļą āļ‘āļš āļ­āļ¸āļē⎒ āˇ„āˇœāļŗāļ¸ āļ¯āˇš. ArtistsāļŊāļ§āļ­āˇŠ support āļ‘āļšāļšāˇŠ āļŊ⎐āļļ⎙āļąāˇ€āļąāˇš.