It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
// ==UserScript==
// @name Total Merit Sent & Received on Merit page
// @version 0.2
// @author TryNinja
// @match https://bitcointalk.org/index.php?*action=merit;*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const sent = document.querySelectorAll("#bodyarea > ul:nth-child(5) > li");
const received = document.querySelectorAll("#bodyarea > ul:nth-child(7) > li");
var totalReceived = 0;
var totalSent = 0;
received.forEach(receivedTx => {
const txValue = receivedTx.innerHTML.replace(/^(.*?\: )( for.*)|( from.*)/, "").replace(/(.*: )/, "");
totalReceived += parseInt(txValue);
})
sent.forEach(sentTx => {
const txValue = sentTx.innerHTML.replace(/^(.*?\: )( for.*)|( to.*)/, "").replace(/(.*: )/, "");
totalSent += parseInt(txValue);
})
const sentH3 = document.querySelector("#bodyarea > h3:nth-child(4)");
const receivedH3 = document.querySelector("#bodyarea > h3:nth-child(6)");
var sentNode = document.createTextNode(" (total: " + totalSent + ")");
var receivedNode = document.createTextNode(" (total: " + totalReceived + ")");
sentH3.appendChild(sentNode);
receivedH3.appendChild(receivedNode);
})();
Topics | Date | written by | Section | Merit | |
___________________________________________________________________ | __________ | _____________ | ______________________________ | ____ | |
Automatically append ;dt to the end of URLs (View as DT) [v0.2.3] | 13/1/2019 | DarkStar_ | a "View as DefaultTrust" option | 24+ |
// ==UserScript==
// @name Bitcointalk Sort By Merit
// @version 1.0
// @grant none
// @include https://bitcointalk.org/index.php?topic=*
// @run-at document-end
// ==/UserScript==
const sortBtn = document.createElement("a")
sortBtn.href = "javascript:void(0)"
sortBtn.textContent = "sort by merit"
const threadButtons = document.querySelector("td.mirrortab_back")
threadButtons.prepend(document.createTextNode(" | "))
threadButtons.prepend(sortBtn)
sortBtn.addEventListener("click", sortByMerit)
function sortByMerit() {
const table = document.querySelector("#bodyarea .bordercolor > tbody")
const posts = [...table.rows]
.map(post => {
try {
const merit = [...post.querySelectorAll(".td_headerandpost .smalltext i > a")]
.map(e => {
return parseInt(e.nextSibling.textContent.match(/\((.*)\)/)[1])
})
.reduce((acc, e) => acc + e, 0)
return { merit, post }
} catch (e) {
console.error(e)
}
})
.sort(({ merit: merit1 }, { merit: merit2 }) => merit2 - merit1)
posts.forEach(({ post, merit }) => {
try {
table.append(post)
} catch (e) {}
})
}
Topics | Date | written by | Section | Merit | |
_________________________________________________________________ | __________ | _____________ | ______________________________ | ____ | |
Display total sent/ received merits last 120 days on user merit stat page | 01/11/2019 | TryNinja | Users' merit stats | 2+ |
// ==UserScript==
// @name Total Merit Sent & Received on Merit page
// @version 0.1
// @author TryNinja
// @match https://bitcointalk.org/index.php?*action=merit;*
// @grant none
// ==/UserScript==
// OUTDATED VERSION, CHECK THE LINK ABOVE FOR THE LATEST CODE
(function() {
'use strict';
const sent = document.querySelectorAll("#bodyarea > ul:nth-child(5) > li").length;
const received = document.querySelectorAll("#bodyarea > ul:nth-child(7) > li").length;
const sentH3 = document.querySelector("#bodyarea > h3:nth-child(4)");
const receivedH3 = document.querySelector("#bodyarea > h3:nth-child(6)");
var sentNode = document.createTextNode(" (total: " + sent + ")");
var receivedNode = document.createTextNode(" (total: " + received + ")");
sentH3.appendChild(sentNode);
receivedH3.appendChild(receivedNode);
})();
// ==UserScript==
// @name Bitcointalk Post Merit Sum
// @version 1.0
// @grant none
// @include https://bitcointalk.org/index.php?topic=*
// @run-at document-end
// ==/UserScript==
;[...document.querySelectorAll(".td_headerandpost")].forEach(post => {
try {
let sum = [...post.querySelectorAll(".smalltext i > a")]
.map(e => {
return parseInt(e.nextSibling.textContent.match(/\((.*)\)/)[1])
})
.reduce((acc, e) => acc + e, 0)
if (sum > 0) {
let sumElement = document.createElement("span")
sumElement.textContent = `Total merit: ${sum} | `
post.querySelector(".smalltext i").prepend(sumElement)
}
} catch (e) {
console.error(e)
}
})
Topic | Date | written by | Section | Merit | |
__________________________________________________________________ | __________ | _____________ | ______________________________ | ____ | |
Sum and display total received merits of posts/ threads | 25/8/2019 | hatshepsut93 | sums & displays all mertis of a post | 7+ | |
Display username at 1st position in list of merit senders of posts/threads | 26/8/2019 | hatshepsut93 | sums & displays all mertis of a post | 1+ |
// ==UserScript==
// @name Bitcointalk Post Merit Sum
// @version 1.0
// @grant none
// @include https://bitcointalk.org/index.php?topic=*
// @run-at document-end
// ==/UserScript==
;[...document.querySelectorAll(".td_headerandpost")].forEach(post => {
try {
let sum = [...post.querySelectorAll(".smalltext i > a")]
.map(e => {
return parseInt(e.nextSibling.textContent.match(/\((.*)\)/)[1])
})
.reduce((acc, e) => acc + e, 0)
if (sum > 0) {
let sumElement = document.createElement("span")
sumElement.textContent = `Total merit: ${sum} | `
post.querySelector(".smalltext i").prepend(sumElement)
}
} catch (e) {
console.error(e)
}
})
Topic | Date | written by | Section | Merit | |
_____________________________________________________________________ | __________ | _____________ | ______________________________ | ____ | |
[BETA] Bitcointalk Extension - All In One | 23/8/2019 | mrvuit | Multiple features | 7+ |
Topic | Date | written by | Section | Merit | |
_________________________________________________________________ | __________ | _____________ | ______________________________ | ____ | |
AutoReply v1.0 | 01/4/2019 | Aero Blue | bump thread & delete old bumps | 2+ |