Greasy Fork

Greasy Fork is available in English.

豆瓣恢復彩色

我們用彩色哀悼,我們用彩色抗議(讓豆瓣頁面重回彩色模式,禁用黑白灰度)

// ==UserScript==
// @name         豆瓣恢復彩色
// @namespace    http://tampermonkey.net/
// @version      0.25
// @description  我們用彩色哀悼,我們用彩色抗議(讓豆瓣頁面重回彩色模式,禁用黑白灰度)
// @author       YY
// @match        https://www.douban.com/
// @match        https://www.douban.com/?p=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.body.className = 'none';
})();