TurkTorrent URL Araması

TurkTorrent sitesinde URL'den arama yapmaya olanak sağlar (URL Örneği: https://turktorrent.us/?p=torrents&pid=10&q=Avatar).

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         TurkTorrent URL Araması
// @version      1
// @description  TurkTorrent sitesinde URL'den arama yapmaya olanak sağlar (URL Örneği: https://turktorrent.us/?p=torrents&pid=10&q=Avatar).
// @author       nht.ctn
// @namespace    https://github.com/nhtctn
// @include      *://turktorrent.us/?p=torrents&pid=10&q=*
// @grant        none
// @run-at       document-end
// @icon         https://turktorrent.us/favicon.ico?lv=2.2
// ==/UserScript==
const pageUrl = window.location.href;
if (pageUrl.search(/https?:\/\/turktorrent\.us/) >= 0) {

	var urlParams = new URLSearchParams(window.location.search);
	var postKeyword = urlParams.get('q');

	if (urlParams.get('q') && postKeyword !== '') {
		$('#keywords').attr("value", postKeyword);
		$('#search_torrent [value="Ara"]').click();
	}
	else {
		document.location = 'https://turktorrent.us/?p=torrents&pid=10';
	}
}