Greasy Fork

Greasy Fork is available in English.

动漫花园魔改

动漫花园暗色主题,并且屏蔽了广告

目前为 2023-08-28 提交的版本,查看 最新版本

// ==UserScript==
// @name         动漫花园魔改
// @namespace    http://tampermonkey.net/
// @version      0.2
// @license      GPL License
// @description  动漫花园暗色主题,并且屏蔽了广告
// @author       kasuie
// @match        https://share.dmhy.org/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=dmhy.org
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var linkElement = document.createElement('link');
    linkElement.rel = 'stylesheet';
    linkElement.type = 'text/css';
    linkElement.href = 'https://cdn.jsdelivr.net/gh/kasuie/[email protected]/web-dmhy/index.css';
    document.head.appendChild(linkElement);
})();