// ==UserScript== // @name 从豆瓣电影直接跳转茶杯狐搜索资源 // @namespace https://cupfox.app/ // @version 0.0.6 // @author Cupfox // @match *://movie.douban.com/subject/* // @description 茶杯狐是一个影视资源聚合搜索引擎。安装脚本后豆瓣电影标题旁会显示茶杯狐的logo,点击就可以搜索影视资源了。 // @downloadURL none // ==/UserScript== (function () { var host = location.hostname; if (host === 'movie.douban.com') { const title = encodeURIComponent(document.querySelector('title').innerText.replace(/(^\s*)|(\s*$)/g, '').replace(' (豆瓣)', '')); const subjectwrap = document.querySelector('h1'); const subject = document.querySelector('.year'); if (!subjectwrap || !subject) { return; } const sectl = document.createElement('span'); subjectwrap.insertBefore(sectl, subject.nextSibling); sectl.insertAdjacentHTML('beforebegin', ` ` ); } })();