Yurba Docs
Yurba Documentation

Get started

Accounts

Apps

Users

Relationships

Dialogs (Messages)

Tracks (MuseBase)

Photos

Posts

Comments

Safety

Other

Yurba CDN (cdn.yurba.one)

Yurba Desktop API

Yurba Component Language

METHOD link

Structure

link: Object properties Description

Allows you to connect external files to the extension. Currently, only .css files can be connected, and they will be imported using style tag. There are only two modes: "web" and "app"

Example usage

// link CSS file to webview app.link( { path: "index.css", // ./addons_path/my_addon/index.css method: "web" } ) // link CSS file to app app.link( { path: "index.css", method: "app" } )