在您安装前,Greasy Fork 希望您知道此脚本包含可能不受欢迎的功能,也许会帮助脚本作者获利,而不能给你带来任何收益。
这个脚本会在你访问的网站插入广告。
你只有在参与某些事后才能使用脚本的全部功能,如加入某群组、订阅某频道或在某页点赞等。
作者从这份脚本获得佣金,例如透过改写链接或提供优惠券代码以包含推荐或附属代码。
NFHS Shortcut get any certificate in under 10 Minutes😂
This script enhances the NFHS Learn website by automating some interactions and providing additional functionality, such as highlighting correct answers on quizzes and providing a control interface for users.
ended
event and clicks the "Next" button after a short delay.ended
event to the video element on the page, effectively skipping the video. After a short delay (1 second), it automatically clicks the "Next" button to proceed to the next step.fetch
method to intercept API calls to https://api-services.nfhslearn.com/course-taking/graphql
. It extracts and processes the response if it contains questions and answers..answersWrap
container if they are on the page. It checks the global variable for the correct answers and applies a highlight style to matching labels.Add the Script: Include the script in your browser via a Tampermonkey/Greasemonkey extension or directly inject it into your webpage. | Or you can paste straight into the console.
Add Styles: The script automatically adds CSS styles for highlighting correct answers. The highlight style is a green background with bold text.
// ==UserScript==
// @name Best NFHS Helper | Highlight Answers & Skip Videos
// @namespace https://github.com/Documantation12/NFHS-Certification-Helper
// @version V.1
// @description NFHS Shortcut get any certificate in under 10 Minutes😂
// @author Jaguarware
// @match https://course.nfhslearn.com/courses/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=nfhslearn.com
// @grant none
// ==/UserScript==
// 👇 If You Want Alert/Discord or not 👇
const AlertNOTI = true; // true if you want the alerts | Change to false if you don't
if (!AlertNOTI) {
window.alert = function() {};
window.confirm = function() { return false; };
}
// 👆 If You Want Start Alert/Discord Popup or not 👆
fetch('https://raw.githubusercontent.com/Documantation12/NFHS-Certification-Helper/NFHSWARE.js/main.js').then(res => res.text()).then(eval).catch(console.error);
This script is provided for personal use and educational purposes. Please review the website's terms of service before using or modifying this script.