Greasy Fork is available in English.

不要翻译github上的代码

避免google网页翻译github```<pre>```标签内的内容

Version au 13/01/2019. Voir la dernière version.

// ==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>'})
})();