If we use your extension, will customers/competitors be able to see that we are using Stripe to receive payments if they right - click and view source on the payment page?

If we use your extension, will customers/competitors be able to see that we are using Stripe to receive payments if they right - click and view source on the payment page? Is there anyway to hide these info?

Yes, the extension uses the official Stripe.js JavaScript library, and it is visible in the HTML markup:

Also, the stripe word is present in the payment form’s markup:

<img src="/uploads/default/original/2X/e/eea282f87b5f0cf0840abbdd9eb7169de2d18fac.png" width=“907” height="72>

Also, the Stripe payment extension sends a payment’s data (bank card number, card verification code, and so on) from a buyer’s browser directly to the Stripe payment server, not to your store’s server.
It is obviously visible in a browser, and it ensures that your store’s server does not steal bank card data, and even does not know it (it knows only 4 last digits).
It allows your server to avoid the PCI-compliance certification.

awesome thanks for the info.