Embed Nitro Type in Nitro Math Pt 1

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

目前为 2023-04-13 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Embed Nitro Type in Nitro Math Pt 1
  3. // @namespace https://singai.com
  4. // @version 1.0
  5. // @description This is the part one of embedding Nitro Type in Nitro Math
  6. // @match https://nitromath.com/*
  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. })();