Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome extension: bitcoin wallet

Could a chrome extension be made that maintains a bitcoin wallet while also making it easy for web stores to integrate a one-click purchase experience.

Suppose a button on a webpage is clicked. Is it possible for that to trigger a function call to the chrome extension to send bitcoins?

Obviously letting webpages unlimited access to chrome extensions would never have been designed. But is there some way to make this work securely?

like image 648
user782220 Avatar asked Dec 27 '11 07:12

user782220


People also ask

How do I add Crypto Wallet to Chrome?

Step 1: Go to the Crypto.com Wallet Extension download page and click 'Add to Chrome' to initiate the installation.

Is there a Chrome extension for Coinbase Wallet?

The Coinbase Wallet extension allows you to explore dapps, trade on decentralized exchanges, collect NFTs, and more from your web browser without needing to confirm transactions from your mobile device. To get started, you'll need: To install the Coinbase Wallet extension from the Chrome Web Store.

Does Crypto COM have a Chrome extension?

Download the Crypto.com Wallet Extension in the Google Chrome Web Store.


1 Answers

Chrome extensions can insert arbitrary code into web pages (content scripts).

Content scripts are JavaScript files that run in the context of web pages. By using the standard Document Object Model (DOM), they can read details of the web pages the browser visits, or make changes to them.

This code can communicate with the original web page via the DOM and with the rest of the extension via message passing.

In theory, this should suffice. But make it secure, please.

like image 178
nisc Avatar answered Oct 23 '22 11:10

nisc