Skip to content

Instantly share code, notes, and snippets.

@BubuMVX
BubuMVX / VerkoRewards.user.js
Created November 22, 2022 23:48
An (experimental) userscript to export your rewards as a CSV file from your Verko account
// ==UserScript==
// @name Verko Rewards
// @namespace https://artmakers.io/
// @version 1.0
// @description Export all rewards from Verko.io
// @author Bubu
// @match https://wallet.verko.io/rewards
// @icon https://www.google.com/s2/favicons?sz=64&domain=verko.io
// @grant none
// @require https://code.jquery.com/jquery-3.6.1.min.js
@BubuMVX
BubuMVX / pledgebox-get-tracking.user.js
Last active September 20, 2020 17:10
An userscript to display your tracking code on PledgeBox.
// ==UserScript==
// @name PledgeBox details
// @version 1.1
// @description Add additional infos on PledgeBox interface.
// @author Romain
// @match https://survey.pledgebox.com/projects
// @match https://survey.pledgebox.com/projects/detail/*
// @grant none
// @require https://code.jquery.com/jquery-3.5.1.min.js
// @homepageURL https://gist.github.com/grobux/48eeebdc5d9b746e298d23dc90ecf531
@BubuMVX
BubuMVX / pledgebox-get-id.js
Last active July 20, 2020 22:09
A small and dirty snippet to get your PledgeBox ID on a project.
/*
* PledgeBox pledge manager
* Display some datas about your order on a project
* Run it on "thank you" page.
* URL scheme: https://survey.pledgebox.com/project/[PROJECT_ID]/[PROJECT_SLUG]/[TOKEN]/success
* Dates timezone: GMT-7
*/
var httpRequest = new XMLHttpRequest();
httpRequest.open('POST', 'https://survey.pledgebox.com/api/survey/order/info', true);