图书馆评论区

图书馆评论区接入

Tính đến 29-04-2023. Xem phiên bản mới nhất.

Script này sẽ không được không được cài đặt trực tiếp. Nó là một thư viện cho các script khác để bao gồm các chỉ thị meta // @require https://update.greasyfork.org/scripts/465118/1183211/%E5%9B%BE%E4%B9%A6%E9%A6%86%E8%AF%84%E8%AE%BA%E5%8C%BA.js

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         图书馆评论区
// @namespace    https://shequ.codemao.cn/user/438403
// @version      1.0.0
// @description  图书馆评论区接入
// @author       小鱼yuzifu
// @match        *://shequ.codemao.cn/*
// @icon         https://static.codemao.cn/coco/player/unstable/B1F3qc2Hj.image/svg+xml?hash=FlHXde3J3HLj1PtOWGgeN9fhcba3
// @grant        GM_xmlhttpRequest
// @require      https://code.jquery.com/jquery-3.6.1.min.js
// @require      https://unpkg.com/sweetalert/dist/sweetalert.min.js
// @require      https://cdn.jsdelivr.net/npm/[email protected]
// @require      https://cdn.jsdelivr.net/npm/[email protected]/tld.min.js
// @license      616 SB License
// ==/UserScript==

(function () {
    'use strict';
    setInterval(() => {
        if (document.querySelector(".wl-footer .wl-info .wl-btn.primary")) {
            if (JSON.parse(localStorage.getItem("WALINE_USER_META")).link == "https://shequ.codemao.cn/user/undefined") {
                document.querySelector(".wl-footer .wl-info .wl-btn.primary").setAttribute("disabled", "disabled")
            }
            else {
                document.querySelector(".wl-footer .wl-info .wl-btn.primary").removeAttribute("disabled")
            }
        }
        if (document.querySelector("div.index__novel-chapter___Avuy1") && !document.querySelector("#waline")) {
            $("div.index__novel-chapter___Avuy1").after(`
      <link
    rel="stylesheet"
    href="https://unpkg.com/@waline/client@v2/dist/waline.css"
  />
      <div id='waline'></div>
      <script type="module">
    import { init } from 'https://unpkg.com/@waline/client@v2/dist/waline.mjs';

    init({
      el: '#waline',
      serverURL: 'https://aquamarine-tartufo-42dac6.netlify.app/.netlify/functions/comment',
      meta:[],
      login:'disable',
      copyright:false
    });
  </script>
      `)
        }
    }, 100)
})();