Feedbin Enhancement

Refine Feedbin appearance.

当前为 2024-10-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         Feedbin Enhancement
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Refine Feedbin appearance.
// @author       henryxrl
// @match        https://feedbin.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=feedbin.com
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function () {
    var css =`
        .scroll-bars { scrollbar-color: #91959b #fff !important; }
        .scroll-bars.theme-sunset { scrollbar-color: #8e8c88 #f5f2eb !important; }
        .scroll-bars.theme-dusk { scrollbar-color: #707070 #262626 !important; }
        .scroll-bars.theme-midnight { scrollbar-color: #595959 #000 !important }
        .feed-list li .link-inner { margin: 3px !important; font-size: 1rem !important; padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
        .entry-summary-link { line-height: 1.3 !important; font-size: 1rem !important; }
        `;
    GM_addStyle(css);
})();