<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: [Billing] How to download an invoice/receipt? JPG/PDF in Other (Podcasts, Partners, etc.)</title>
    <link>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5334877#M85477</link>
    <description>&lt;P&gt;Damn, this is perfect!&lt;/P&gt;</description>
    <pubDate>Sat, 29 Jan 2022 13:21:29 GMT</pubDate>
    <dc:creator>nimareq</dc:creator>
    <dc:date>2022-01-29T13:21:29Z</dc:date>
    <item>
      <title>[Billing] How to download an invoice/receipt? JPG/PDF</title>
      <link>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5138504#M77105</link>
      <description>&lt;P&gt;Spotify must be the single one service in 21st century that still doesn't provide downloadable invoices despite its users posting several "ideas" here in the community, which all end up closed due to proclaimed "low interest".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could always make a screenshot, save the whole page as PDF or print it, but I would like to show you an "advanced" way, where you can also insert your credentials or about anything you want.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I did it in Google Chrome, but other browsers should have similar UI.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;1) Go to &lt;A href="https://www.spotify.com/account/subscription/receipt/" target="_blank" rel="noopener"&gt;https://www.spotify.com/account/subscription/receipt/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2) Open one of the receipts, right click to open "Dev tools" or "Inspect element"&lt;/P&gt;
&lt;P&gt;3) Find the invoice row nodes and copy&amp;amp;paste one to create three new rows&lt;/P&gt;
&lt;P&gt;4) Change the label of the rows to "Name", "Address", "VAT number" and change their texts accordingly&lt;/P&gt;
&lt;P&gt;5) Move the three new rows to the top&lt;/P&gt;
&lt;P&gt;6) Right click the parent node and choose "Capture node screenshot"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the attached gif for an overview of the whole process.&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;BEFORE:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;lt;snip - Moderator Edit&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;AFTER:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;lt;snip - Moderator Edit&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 13:51:25 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5138504#M77105</guid>
      <dc:creator>nimareq</dc:creator>
      <dc:date>2021-11-10T13:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: [Billing] How to download an invoice/receipt? JPG/PDF</title>
      <link>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5291939#M82927</link>
      <description>&lt;P&gt;I have made this script for the Tempermonkey Chrome Plugin so you don't have to use the Inspector every time. Just replace in the script "Your Company Name", "Your Address" and "Your VAT No". After you install this script, you just have to make a screenshot when you need a new invoice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// ==UserScript==
// @name         Spotify Invoice
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Add Company details to invoice
// @author       You
// @match        https://www.spotify.com/us/account/subscription/receipt*
// @icon         https://www.google.com/s2/favicons?domain=spotify.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var company = "Your Company Name";
    var address = "Your Address";
    var vat = "Your VAT No";

    $('.receipt-container').prepend( '&amp;lt;div class="row receipt-data-row"&amp;gt;&amp;lt;div class="col-sm-4 col-xs-5 receipt-data-header"&amp;gt;VAT No&amp;lt;/div&amp;gt;&amp;lt;div class="col-sm-8 col-xs-7 receipt-data-value"&amp;gt;'+vat+'&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;' );
    $('.receipt-container').prepend( '&amp;lt;div class="row receipt-data-row"&amp;gt;&amp;lt;div class="col-sm-4 col-xs-5 receipt-data-header"&amp;gt;Address&amp;lt;/div&amp;gt;&amp;lt;div class="col-sm-8 col-xs-7 receipt-data-value"&amp;gt;'+address+'&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;' );
    $('.receipt-container').prepend( '&amp;lt;div class="row receipt-data-row"&amp;gt;&amp;lt;div class="col-sm-4 col-xs-5 receipt-data-header"&amp;gt;Company&amp;lt;/div&amp;gt;&amp;lt;div class="col-sm-8 col-xs-7 receipt-data-value"&amp;gt;'+company+'&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;' );
})();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 12:51:49 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5291939#M82927</guid>
      <dc:creator>KtorKtor</dc:creator>
      <dc:date>2021-11-09T12:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: [Billing] How to download an invoice/receipt? JPG/PDF</title>
      <link>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5334877#M85477</link>
      <description>&lt;P&gt;Damn, this is perfect!&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jan 2022 13:21:29 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5334877#M85477</guid>
      <dc:creator>nimareq</dc:creator>
      <dc:date>2022-01-29T13:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: [Billing] How to download an invoice/receipt? JPG/PDF</title>
      <link>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5422732#M91782</link>
      <description>&lt;P&gt;Receipts page appears to have changed since this fix was posted.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2022 09:37:16 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5422732#M91782</guid>
      <dc:creator>paul-twoatsix</dc:creator>
      <dc:date>2022-08-29T09:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: [Billing] How to download an invoice/receipt? JPG/PDF</title>
      <link>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5493317#M96177</link>
      <description>&lt;P&gt;The&amp;nbsp;tampermonkey script not working anymore. Does anyone have a new script for this problem?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 09:40:19 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5493317#M96177</guid>
      <dc:creator>Mindaugas100</dc:creator>
      <dc:date>2023-01-24T09:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: [Billing] How to download an invoice/receipt? JPG/PDF</title>
      <link>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5616370#M101545</link>
      <description>&lt;P&gt;Anyone has a solution for having the monthly invoices from Spotify Premium Service?&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jul 2023 12:29:26 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5616370#M101545</guid>
      <dc:creator>LuisVG</dc:creator>
      <dc:date>2023-07-30T12:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: [Billing] How to download an invoice/receipt? JPG/PDF</title>
      <link>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5706717#M105726</link>
      <description>&lt;P&gt;How is it possible that Spotify doesn't provide downloadable invoices?!?! unbelievable.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":frowning_face:"&gt;☹️&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2023 13:17:44 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5706717#M105726</guid>
      <dc:creator>ANNA_SPOT</dc:creator>
      <dc:date>2023-11-29T13:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: [Billing] How to download an invoice/receipt? JPG/PDF</title>
      <link>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5873300#M107732</link>
      <description>&lt;P&gt;Why is not printing the receipt to a PDF not sufficient?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 14:25:34 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Other-Podcasts-Partners-etc/Billing-How-to-download-an-invoice-receipt-JPG-PDF/m-p/5873300#M107732</guid>
      <dc:creator>Christof</dc:creator>
      <dc:date>2024-02-08T14:25:34Z</dc:date>
    </item>
  </channel>
</rss>

