QuickAlerts is a Chrome Extension for Tradingview.
It's features include:
- Batch import/export of an ever-growing number of alert types
- Sort alerts alphabetically
// Usage | |
// code and directions from: https://gist.github.com/sokol815/139ebf969d32100428c4cd4161204615 | |
// created by @sokol#6328 on discord. | |
var SCRIPT_PROP = PropertiesService.getScriptProperties(); // new property service | |
//function doGet(e){ | |
// return handleResponse(e); | |
//} |
var App = App || {}; | |
if( !Acc ) { | |
console.warn('Acc is required for App.ECS to function'); | |
} | |
App.ECS = function( parent ) { | |
this.parent = parent; | |
this.systems = {}; | |
this.components = {}; |
// ==UserScript== | |
// @name Tower of Prestige 3 automation | |
// @namespace http://tampermonkey.net/* | |
// @version 1.0.0 | |
// @description Automates "playing" Tower of Prestige 3 | |
// @author sokol815 | |
// @match https://makiki99.github.io/prestige3/ | |
// @grant none | |
// ==/UserScript== |
(function() { | |
var rows = $($(".alert-list")[1]).find('tr'); | |
var csv = ''; | |
var headers = $(rows[0]).find('th'); | |
for( var i = 0; i < headers.length; i++ ) { | |
csv += (i > 0 ? ',' : '' ) + $(headers[i]).text().trim().split(',').join(' '); | |
} |
// ==UserScript== | |
// @name QA Alert List Export addon | |
// @namespace http://tampermonkey.net/* | |
// @version 1.0.0 | |
// @description Export csv of Alerts that have fired. | |
// @author sokol815 LTC: LNpicahdGTFpuXNEhTVoUErPb6EEjBdmwg | |
// @match https://www.tradingview.com/* | |
// @grant none | |
// ==/UserScript== |
javascript:(function(){ | |
var parentID = 'a3q_parent'; | |
var dID = 'a3q_customNotes'; | |
var buttonID = 'a3q_close_button'; | |
var saveThrottleSpeed = 100; | |
var lastSave = Date.now(); | |
var waitCallback; | |
function a3q_Save(force){ | |
force = force || false; |
QuickAlerts is a Chrome Extension for Tradingview.
It's features include: