ardittristan / VTTInlineWebviewer

Allows you to have webpages open inside Foundry VTT

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub All Releases Donate

Inline Webviewer

Installation

To install, import this Manifest into your module browser.

Make sure you've also have the ColorSettings library installed!

Usage

As HUD button

You can add new webviews in the settings, for more info on this click the help button on the settings' popup.

All webviews appear on the left HUD under the menu.

When sending popup as GM

For GMs, a should be visible in the menu. If clicked on, the GM can enter an url. This url will pop up on the screen of all players inside a webviewer.

 
You can also use this in a macro, it functions the same as the popup, but can be called as a function:

/**
 * @param {String} url - webview url
 * @param {Boolean} compat - compatibility mode on or off
 * @param {Number} w - width
 * @param {Number} h - height
 * @param {String} name - title of application
 * @param {String} customCSS - css selectors for elements to be removed, comma seperated
 * @param {String[]} userList - array of user id's to which the webview gets send, if empty it sends to everyone
 * @param {String} properties - string of html element properties to add to the iframe element
 */
window.Ardittristan.InlineViewer.sendUrl(url, compat = false, w = 512, h = 512, name, customCSS, userList, properties)

As a journal

Webviewers can be exported to journals by gms with a button at the top of the popup. Do keep in mind that these journals do not update if you change the settings of the webviewer.

Troubleshooting

  • If the site disallows embedding in iframes you can try enabling compatibility mode, compatibility mode might not fully fix the issue and logs domain names to prevent abuse.

  • Another option is to install this browser extension, which works better than compatibility mode and doesn't log anything.

  • AVG and Avast flag the foundry module for iframe injection. This is probably because it utilizes iframes a lot. To still use the module you should whitelist inlineviewer.js and inlineviewer.html

Example

Preview

Changelog

Check the Changelog

About

Allows you to have webpages open inside Foundry VTT

License:MIT License


Languages

Language:JavaScript 67.1%Language:HTML 21.4%Language:CSS 11.5%