Just Read

Simplify your reading experience

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Just Read
// @description  Simplify your reading experience
// @license      MIT
// @homepageURL  https://github.com/isolcat/JustRead
// @match        https://www.zhihu.com/**
// @version      0.2.1
// @namespace    https://github.com/isolcat
// ==/UserScript==


const topstoryElement = document.querySelector('.Topstory');
const creators = document.querySelector('.css-1oy4rvw');
const elements = document.querySelectorAll('.Card.TopstoryItem.TopstoryItem-isRecommend');
const content = document.querySelector('.Topstory-mainColumn')
const questionList = document.querySelector('.QuestionAnswers-answers')
const videoTab = document.querySelectorAll('.TopstoryTabs-link.Topstory-tabsLink')
const searchHot = document.querySelector('.css-1oy4rvw')
const zhiUrl = window.location.href


if (zhiUrl.includes('question')) {
    creators.remove()
    questionList.style.margin = '0 auto'
} else if (zhiUrl.includes('search')) {
    searchHot.remove()
} else {
    content.style.margin = '0 auto'
    content.style.width = '960px'
    videoTab[3].style.display = 'none';
}


content.style.margin = '0 auto'
content.style.width = '960px'

if (topstoryElement) {
    topstoryElement.querySelector('div')?.remove();
}

if (creators) {
    creators.remove();
}

function removeElement() {
    var elements = document.querySelectorAll('.css-i2yo90');
    elements.forEach(function (element) {
        var parentElement = element.closest('.Card.TopstoryItem.TopstoryItem-isRecommend');
        if (parentElement) {
            parentElement.remove();
        }
    });
}

setInterval(removeElement, 100);