一键复制公式

Click to copy equation in Wikipedia and Zhihu

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         一键复制公式
// @namespace    http://tampermonkey.net/
// @version      0.7
// @description  Click to copy equation in Wikipedia and Zhihu
// @author       flaribbit
// @match        http://*.wikipedia.org/*
// @match        https://*.wikipedia.org/*
// @match        http://www.wikiwand.com/*
// @match        https://www.wikiwand.com/*
// @match        https://www.zhihu.com/question/*
// @match        https://zhuanlan.zhihu.com/p/*
// @match        https://blog.csdn.net/*/article/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';
    const host = document.location.host;
    const el = document.createElement('style');
    el.innerText = '@keyframes aniclick{0%{background:#03A9F400}20%{background:#03A9F47F}100%{background:#03A9F400}}';
    document.head.appendChild(el);
    const clearAnimation = function () {
        this.style.animation = '';
    }
    if (host.search('wikipedia') >= 0) {
        const copyTex = function () {
            navigator.clipboard.writeText('$' + this.alt + '$');
            this.style.animation = 'aniclick .4s';
        }
        const eqs = document.querySelectorAll('.mwe-math-fallback-image-inline, .mwe-math-fallback-image-display');
        for (let i = 0; i < eqs.length; i++) {
            eqs[i].onclick = copyTex;
            eqs[i].addEventListener('animationend', clearAnimation);
            eqs[i].title = '点击即可复制公式';
        }
    } else if (host.search('wikiwand') >= 0){
        const copyTex = function () {
            const tex = this.getElementsByTagName('math')[0].getAttribute("alttext");
            navigator.clipboard.writeText('$' + tex + '$');
            this.style.animation = 'aniclick .4s';
        }
        const check_equations = (mutationList, observer) => {
            const eqs = document.querySelectorAll('.mwe-math-element');
            for (let i = 0; i < eqs.length; i++) {
                eqs[i].onclick = copyTex;
                eqs[i].addEventListener('animationend', clearAnimation);
                eqs[i].title = '点击即可复制公式';
            }
        }
        const targetNode = document.getElementsByTagName('article')[0];
        const config = { attributes: false, childList: true, subtree: true };
        const observer = new MutationObserver(check_equations);
        observer.observe(targetNode, config);
    } else if (host.search('zhihu') >= 0) {
        const copyTex = function () {
            navigator.clipboard.writeText('$' + this.getAttribute('data-tex') + '$');
            this.style.animation = 'aniclick .4s';
        }
        const check_equations = function () {
            if (document.visibilityState == 'visible') {
                const eqs = document.querySelectorAll('.ztext-math');
                for (let i = 0; i < eqs.length; i++) {
                    eqs[i].onclick = copyTex;
                    eqs[i].addEventListener('animationend', clearAnimation);
                    eqs[i].title = '点击即可复制公式';
                }
            }
        }
        if (document.location.href.search('question') >= 0) {
            setInterval(check_equations, 1000);
        } else {
            check_equations();
        }
    } else if (host.search('blog.csdn') >= 0) {
        const copyTex = function () {
            navigator.clipboard.writeText('$' + this.querySelector('annotation').textContent.trim() + '$');
            this.style.animation = 'aniclick .4s';
        }
        const eqs = document.querySelectorAll('.katex');
        for (let i = 0; i < eqs.length; i++) {
            eqs[i].onclick = copyTex;
            eqs[i].addEventListener('animationend', clearAnimation);
            eqs[i].title = '点击即可复制公式';
        }
    }
})();