Protect Eye

Set Background Color to protect eys.

当前为 2017-02-23 提交的版本,查看 最新版本

// ==UserScript==
// @name         Protect Eye
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Set Background Color to protect eys.
// @author       You
// @match        http://*/*
// @match        https://*/*
// @require      https://code.jquery.com/jquery-3.1.1.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $('*').css({
        'background-color': '#C7EDCC',
        'color': 'black'
    });
})();