Greasy Fork

Greasy Fork is available in English.

CSRF Grabber

A library for getting the current csrf token for POSTs on Kickass Torrents.

当前为 2016-05-11 提交的版本,查看 最新版本

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/19500/125165/CSRF%20Grabber.js

// ==UserScript==
// @name         CSRF Grabber
// @namespace    PXgamer
// @version      0.1
// @description  A library for getting the current csrf token for POSTs on Kickass Torrents.
// @author       PXgamer
// @include      *kat.cr*
// @grant        none
// ==/UserScript==

function csrf() {
    'use strict';

    return $('form input[name="csrf_token"]').val();
}