避免google网页翻译github```<pre>```标签内的内容
目前為
// ==UserScript==
// @name 不要翻译github上的代码
// @namespace http://floatsyi.com/
// @version 0.11
// @description 避免google网页翻译github```<pre>```标签内的内容
// @author floatsyi
// @include *://github.com*
// @match *://github.com*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('pre').forEach(function(pre){if(!pre.querySelector('code')) pre.innerHTML = '<code>' + pre.innerHTML + '</code>'})
})();