Skip to content

Instantly share code, notes, and snippets.

@nhdinh
Last active September 28, 2023 01:34
Show Gist options
  • Save nhdinh/53066dc7b80e6b6702d56fee1937771f to your computer and use it in GitHub Desktop.
Save nhdinh/53066dc7b80e6b6702d56fee1937771f to your computer and use it in GitHub Desktop.
tampermonkey-vsp.user.js
// ==UserScript==
// @name BangGiaVPS
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Clean the web interface of the dashboard
// @author You
// @match https://banggia.vps.com.vn/chung-khoan/danh-muc
// @icon https://www.google.com/s2/favicons?sz=64&domain=vps.com.vn
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant none
// ==/UserScript==
(async () => {
'use strict';
setTimeout(async () => {
// let collapse_button = $("div.price-board-menu-container > div.setting > a.collapse-button");
$("div.price-board-menu-container > div.setting > a.collapse-button").dispatchEvent(new Event("click"));
}, 1000);
console.log("Hello");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment