This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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); |