Vtimes chrome integration

Install the Vtimes

Search for "Vtimes" in the chrome app store

3350

Click to enter the plug-in details to install

3358

Log in to the Vtimes wallet to complete the visionweb integration

878

VisionWeb instance visionweb integrated into the browser code example

_bindVisionWeb() {
        if(window.visionWeb !== undefined)
            logger.warn('VisionWeb is already initiated. Vtimes will overwrite the current instance');

        const visionWeb = new VisionWeb(
            new ProxiedProvider(),
            new ProxiedProvider(),
            new ProxiedProvider()
        );
        visionWeb.extension = {}; //add a extension object for black list
        visionWeb.extension.setVisited=(href)=>{
            this.setVisited(href);
        };
        this.proxiedMethods = {
            setAddress: visionWeb.setAddress.bind(visionWeb),
            sign: visionWeb.vs.sign.bind(visionWeb)
        };
        visionWeb.vs.sign = (...args) => (
            this.sign(...args)
        );
        window.visionWeb = visionWeb;
    },

Use the injected visionweb instance directly on the browser side

let visionweb = window.visionweb