Greasy Fork is available in English.
try to take over the world!
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/402672/801677/Hash.js
// ==UserScript==
// @name Hash
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Everyone
// @include *
// @grant none
// ==/UserScript==
// crc32 from https://stackoverflow.com/questions/18638900/javascript-crc32
function makeCRCTable(){
var c;
var crcTable = [];
for(var n =0; n < 256; n++){
c = n;
for(var k =0; k < 8; k++){
c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
}
crcTable[n] = c;
}
return crcTable;
}
window.crc32 = function(str) {
var crcTable = window.crcTable || (window.crcTable = makeCRCTable());
var crc = 0 ^ (-1);
for (var i = 0; i < str.length; i++ ) {
crc = (crc >>> 8) ^ crcTable[(crc ^ str.charCodeAt(i)) & 0xFF];
}
return (crc ^ (-1)) >>> 0;
};