Greasy Fork

来自缓存

Greasy Fork is available in English.

低端豆瓣

加入可能的低端影视链接

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name           低端豆瓣
// @namespace      https://github.com/mefengl
// @author         mefengl
// @version        0.3.1
// @description    加入可能的低端影视链接
// @icon           https://www.google.com/s2/favicons?sz=64&domain=ddys.art
// @match          https://movie.douban.com/subject/*
// @match          https://ddys.art/*
// @grant          GM_xmlhttpRequest
// @run-at         document-end
// @license        MIT
// ==/UserScript==

(function () {
  'use strict';

  const doubanIdRegex = /subject\/(\d+)/;
  const baseURL = "https://ddys.art/?s=";

  if (window.location.href.includes('movie.douban.com')) {
    const id = window.location.href.match(doubanIdRegex)[1];
    const asideDiv = document.querySelector('.aside');

    GM_xmlhttpRequest({
      method: "GET",
      url: baseURL + encodeURIComponent(id),
      onload: (response) => {
        const parser = new DOMParser();
        const doc = parser.parseFromString(response.responseText, "text/html");
        const postTitles = doc.querySelectorAll(".post-title > a");

        postTitles.forEach((postTitle) => {
          postTitle.style.cssText = "display:block; margin-bottom:10px; background-color:#ddd; padding:5px; text-align:center; cursor:pointer; border-radius:5px; color:#3a8fb7";
          postTitle.target = "_blank";

          const sourceLabel = document.createElement('small');
          sourceLabel.textContent = " (from 低端影视)";
          sourceLabel.style.cssText = "color:#666; margin-left:5px";
          postTitle.appendChild(sourceLabel);

          asideDiv.insertBefore(postTitle, asideDiv.firstChild);
        });
      }
    });
  } else if (window.location.href.includes('ddys.art')) {
    const titleLink = document.querySelector(".title > a");
    const doubanUrl = titleLink ? titleLink.href : null;
    const modDiv = document.querySelector('.mod');

    if (doubanUrl && modDiv) {
      GM_xmlhttpRequest({
        method: "GET",
        url: doubanUrl,
        onload: (response) => {
          const parser = new DOMParser();
          const doc = parser.parseFromString(response.responseText, "text/html");
          const recommendations = doc.querySelector("#recommendations");
          const recLinks = recommendations ? recommendations.querySelectorAll("dd > a") : [];

          recLinks.forEach((recLink) => {
            const recId = recLink.href.match(doubanIdRegex)[1];

            GM_xmlhttpRequest({
              method: "GET",
              url: baseURL + encodeURIComponent(recId),
              onload: (response) => {
                const parser = new DOMParser();
                const doc = parser.parseFromString(response.responseText, "text/html");
                const postTitle = doc.querySelector(".post-title > a");

                if (postTitle) {
                  postTitle.style.cssText = "display:block; margin-bottom:10px; background-color:#ddd; padding:5px; text-align:center; cursor:pointer; border-radius:5px; color:#3a8fb7";
                  postTitle.target = "_blank";

                  GM_xmlhttpRequest({
                    method: "GET",
                    url: recLink.href,
                    onload: (response) => {
                      const parser = new DOMParser();
                      const doc = parser.parseFromString(response.responseText, "text/html");
                      const ratingNum = doc.querySelector(".rating_num");
                      const ratingLabel = document.createElement('small');
                      ratingLabel.textContent = " (" + (ratingNum ? ratingNum.innerText : 'N/A') + ")";
                      ratingLabel.style.cssText = "color:#666; margin-left:5px";
                      postTitle.appendChild(ratingLabel);

                      modDiv.appendChild(postTitle);
                    }
                  });
                }
              }
            });
          });
        }
      });
    }
  }
})();