Skip to content

Instantly share code, notes, and snippets.

@delmitz
Created August 26, 2024 15:17
Show Gist options
  • Save delmitz/58fa6f8c183240aba7921d47fd7016b9 to your computer and use it in GitHub Desktop.
Save delmitz/58fa6f8c183240aba7921d47fd7016b9 to your computer and use it in GitHub Desktop.
IIDX.me update button
// ==UserScript==
// @name IIDX.me Update script button
// @namespace https://gist.github.com/delmitz/58fa6f8c183240aba7921d47fd7016b9
// @downloadURL https://gist.github.com/delmitz/58fa6f8c183240aba7921d47fd7016b9/raw/iidxme-update-button.user.js
// @updateURL https://gist.github.com/delmitz/58fa6f8c183240aba7921d47fd7016b9/raw/iidxme-update-button.user.js
// @version 20240827
// @description Injection IIDX.me update button to eagate.
// @author Kurosmitz
// @match https://p.eagate.573.jp/game/2dx/*
// @icon https://iidx.me/img/favicon-32x32.png
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
console.log('IIDX.me Tampermonkey script');
$('<img>').attr('src', 'https://iidx.me/img/favicon-32x32.png')
.css({
'position': 'absolute',
'right': '70px',
'top': '3px',
'margin-right': 'calc((100% - min(100%, 980px)) / 2)',
'width': '32px',
'height': '32px',
'z-index': '100',
'cursor': 'pointer',
})
.on('click', function() { $.getScript('https://update.iidx.me/'); })
.appendTo('div#id_nav_menu_2');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment