ChatGPT output HTML direct

ChatGPT直接輸出HTML

Tính đến 08-03-2023. Xem phiên bản mới nhất.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         ChatGPT output HTML direct
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  ChatGPT直接輸出HTML
// @description:en  ChatGPT output HTML direct
// @author       cat-no-war
// @match        https://chat.openai.com/chat
// @icon         https://www.google.com/s2/favicons?sz=64&domain=openai.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function(){
        var codes= document.querySelectorAll("code:not([add_frame])")
        for(let i=0;i<codes.length;i++){
            let code=codes[i];
            //wait completed
            let pre=code.closest("pre");
            if(pre==null){
                 code.setAttribute("add_frame",true);
                continue;
            }
            let codeParentIndex = Array.prototype.indexOf.call(pre.parentElement.children, pre);
            let codeParentLength=pre.parentElement.children.length;
            if(codeParentIndex==codeParentLength-1)continue;
            code.setAttribute("add_frame",true);
            let newFrame=document.createElement("iframe");
            newFrame.style.width="100%";
            newFrame.style.height="512px";
            let lang=code.parentElement.parentElement.children[0].children[0].innerText
            if(lang=="html" || lang=="php"){
                newFrame.src = "data:text/html;charset=utf-8," +  encodeURIComponent(code.innerText);
                code.parentElement.parentElement.parentElement.appendChild(newFrame);
            }
        }
    }, 500);
})();