stackoverflowToCN

将英文版的github跳转到中文版stackoom!

Versione datata 27/06/2020. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         stackoverflowToCN
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  将英文版的github跳转到中文版stackoom!
// @author       岳华
// @match        https://stackoverflow.com/questions/*
// @namespace    https://greasyfork.org/zh-CN/users/660626-lagrange-doggy
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    function addLink(fragment, text, href){
    //let a = imdblink.cloneNode(true);//let作用:a只在所在的代码块内有效!

    fragment.textContent = text;//克隆写结点后做文本的替换
    fragment.href = href;
}

function insertAfter(newNode, referenceNode) {
    referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling);
    return newNode;
}


let title = document.title;//python - How to using @roles required in flask? - Stack Overflow
let start = title.indexOf("-");
let end = title.lastIndexOf("-");
title=title.substring(start+2, end-1);
var links =  document.querySelectorAll (
    ".grid.fw-wrap.pb8.mb16.bb.bc-black-2 > div"//#info标签下的a标签
);//结点的集合
let scanf = document.createElement("scanf");
scanf.textContent="  🚩";
insertAfter(scanf, links[2]);

links = document.querySelectorAll (
    ".grid.fw-wrap.pb8.mb16.bb.bc-black-2 > div"
)

let dev = links[0].cloneNode(false);


let a = document.createElement("a");
a.setAttribute("target", "blank");

dev.appendChild(a);

addLink(a, "  中文stackoverflow ", 'https://stackoom.com/search?q=' + title);

insertAfter(dev, scanf);
})();