Skip to content

Instantly share code, notes, and snippets.

@simbafs
Last active September 20, 2023 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simbafs/6a38f4356455387e4b7ead25507c82a1 to your computer and use it in GitHub Desktop.
Save simbafs/6a38f4356455387e4b7ead25507c82a1 to your computer and use it in GitHub Desktop.
免費用 quizlet
// ==UserScript==
// @name Free Quizlet
// @namespace https://simbafs.cc
// @version 0.1
// @description 免費用 quizlet
// @author simbafs
// @match https://quizlet.com/explanations/textbook-solutions/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('.hideBelow--s').forEach(item => item.remove());
document.querySelector('.ExplanationSolutionsContainer').classList.remove('hnqbbas');
console.log('已經把登入牆移掉,如果有任何問題請回報 me@simbafs.cc')
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment