Greasy Fork is available in English.

zhihu脚本

zhihu脚本,知乎图片加载

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name	zhihu脚本
// @author	上帝未满18岁
// @version	0.3
// @description	zhihu脚本,知乎图片加载
// @homepageURL	http://demo.com
// @match	*://*.zhihu.com/*
// @include	*.zhihu.com/*
// @require http://libs.baidu.com/jquery/1.11.1/jquery.min.js
// @namespace https://greasyfork.org/users/11027
// ==/UserScript==


$('.zu-main-content-inner img').each(function () {
    var $this = $(this);
    if (typeof  $this.attr('data-actualsrc') !== 'undefined') {
        $this.attr('src', $this.attr('data-actualsrc'));
    }
});