您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
TurkTorrent sitesinde URL'den arama yapmaya olanak sağlar (URL Örneği: https://turktorrent.us/?p=torrents&pid=10&q=Avatar).
// ==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'; } }