Embed Nitro Type in Nitro Math Pt 1

This is the part one of embedding Nitro Type in Nitro Math

安裝腳本?
作者推薦腳本

您可能也會喜歡 Embed Nitro Type in Nitro Math Pt 2

安裝腳本
  1. // ==UserScript==
  2. // @name Embed Nitro Type in Nitro Math Pt 1
  3. // @namespace https://singai.com
  4. // @version 2.0
  5. // @description This is the part one of embedding Nitro Type in Nitro Math
  6. // @match https://nitromath.com/ntinnm/
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10.  
  11. (function() {
  12. 'use strict';
  13. var iframe = document.createElement('iframe');
  14. iframe.src = 'https://example.com';
  15. iframe.width = '100%';
  16. iframe.height = '500';
  17. document.body.appendChild(iframe);
  18. })();