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