写了个网页版扇贝单词个人笔记换行支持的脚本

适用于 Chrome 浏览器。需要安装 Tampermonkey 插件。

解决了浏览器版本中,扇贝单词的笔记不支持换行的问题。

脚本内容如下:

// ==UserScript==
// @name         Shanbay User Notes Fix
// @namespace    http://cxuesong.com/
// @version      0.1
// @description  使得扇贝的 用户笔记 能够换行。
// @author       CXuesong
// @match        http://www.shanbay.com/review/learning/*
// @match        http://www.shanbay.com/bdc/review/
// @grant        none
// ==/UserScript==

function ShanBayFixUserNotes() {
	$("#note-mine-box .content span").each(function () {
		var html = "" + this.innerHTML;
		var parent = this.parentElement;
		parent.removeChild(this);
		var p = document.createElement("pre");
		p.innerHTML = html;
		p.style.wordWrap = "word-wrap";
		parent.appendChild(p);
	});
}
window.setInterval(ShanBayFixUserNotes, 1000);

 

漫谈

本文使用 VS 2010/2015 作为开发环境。

小提示:在 Visual Studio 中,为了使得直接运行(不调试)控制台程序时,能够在控制台窗口的最后显示“请按任意键继续”,需要在“解决方案资源管理器”中打开项目的属性页面,然后在 配置属性->链接器 -> 系统 -> 子系统 中选择“控制台 (/SUBSYSTEM:CONSOLE)”。

Continue reading “漫谈”

青岛之行

8月6日-9日 @青岛

一场大型真人面基活动即将开始。

目前的参与人有

Hoole
CXuesong

然后由于连夜暴雨,火车道被冲毁,行程在出行前一天被取消 TT

Content is available under CC BY-SA 3.0 unless otherwise noted.