Git Product home page Git Product logo

Comments (4)

ykfq avatar ykfq commented on July 28, 2024 2

更新: 最新构建镜像地址请使用 https://book.itsfun.top/gopl-zh

之前的域名 itsfun.tk 是在 freenom 上免费申请的,一年免费期明明要到明年4月份才到,但是最近被莫名删除了,已经是第二次遇到,再也不敢用了

from gopl-zh.

cocos543 avatar cocos543 commented on July 28, 2024

👍

from gopl-zh.

ykfq avatar ykfq commented on July 28, 2024

为了达到更好的阅读效果,我在 Tampermonkey 中增加了一个本地脚本

// ==UserScript==
// @name         Better gopl read
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  调整 Gopl 页面宽度及字体大小,以便更加适合阅读。
// @author       High Jiang
// @match        *://book.itsfun.tk/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var style = document.createElement('style');
    style.innerHTML = '.page-inner{ max-width: 1080px; width: 100%; font-size: 16px}';
    document.head.appendChild(style);

})();

from gopl-zh.

haytoo1 avatar haytoo1 commented on July 28, 2024

thanks

from gopl-zh.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.