It’s very simple!

Just write with your favorite text editor a XML file, like this example:

<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs
title="MrAddon example of JIRA Server Dashboard Gadget"
author="Raul Pelaez raulpelaez@mraddon.com www.mraddon.com"
thumbnail="https://route_to_.png"
screenshot="https://route_to.png"
description="JIRA Server Dashboard Description">

<Require feature="minimessage" />
<Require feature="dynamic-height" />
<Require feature="auth-refresh"/>
<Require feature="oauthpopup" />
<Require feature="setprefs" />
<Require feature="settitle" />
<Require feature="core" />
<Require feature="core.io" />
<Require feature="views" />
<Optional feature="atlassian.util" />
<Optional feature="gadget-directory">
<Param name="categories">Other</Param>
</Optional>
</ModulePrefs>

<Content type="html">
<![CDATA[
<script type="text/javascript" src="https://code.jquery.com/jquery-1.7.2.min.js"></script>
<script>
function refresh() {
jQuery.ajax({
 url: "https://coinmarketcap-nexuist.rhcloud.com/api/eth",
 type: "GET",

 contentType: 'application/json; charset=utf-8',
 success: function(json) {
 document.getElementById("eth").innerHTML= json.price.eur;
 
 },
 error : function(jqXHR, textStatus, errorThrown) {
 },

 timeout: 120000,
 });
}

refresh();
</script>
<table>
<tr>
<td><b>ETH</b></td>
<td><font align="right" color="#7c06b7">
<div id="eth">€</div>
</font></td>
</tr>
</table>
]]>
</Content>
</Module>

Now upload the XML file to the internet (like github),
and get the RAW URL of the file.

Now, go to ADD GADGET in your DASHBOARD, then MANAGE GADGETS
and install the URL of the XML file. That’s all!

Very easy!

Posted by:.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s