Greasy Fork is available in English.

colorful douban

去掉黑白的显示限制

// ==UserScript==
// @name         colorful douban
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  去掉黑白的显示限制
// @author       harryhare
// @license      GPL 3.0
// @icon         https://raw.githubusercontent.com/harryhare/userscript/master/index.png
// @match        https://www.douban.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.body.className=""
})();