Forms Questions Extractor

A script that allows you to export questions from a loaded MS Forms test.

当前为 2024-06-13 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Forms Questions Extractor
  3. // @namespace http://tampermonkey.net/
  4. // @description A script that allows you to export questions from a loaded MS Forms test.
  5. // @version 2024-06-01
  6. // @description try to take over the world!
  7. // @author You
  8. // @match https://*/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=office.com
  10. // @grant GM_addElement
  11. // @grant GM_openInTab
  12. // @grant unsafeWindow
  13. // @sandbox raw
  14. // @license MIT
  15.  
  16. // ==/UserScript==
  17.  
  18. (() => {
  19. unsafeWindow.GM_openInTab = function(){GM_openInTab.apply(unsafeWindow,arguments);};
  20. GM_addElement('script', { src: 'https://apps.serwer-testowy.pl/scripts/FormsQuestionsExtractor/index.js?_ts='+ (new Date().toISOString().split(':')[0]), type: 'text/javascript'});
  21. })();