Created
February 6, 2020 19:47
-
-
Save splintor/e466f39814f1c51995bb6a40fb6a6314 to your computer and use it in GitHub Desktop.
Quizlet - Hide accent bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Quizlet - Hide accent bar | |
| // @namespace http://shmulik.flint.org/ | |
| // @version 0.1 | |
| // @description Hide Quizlet accent bar which is annoying and not needed if you have proper keyboard | |
| // @author Shmulik Flint | |
| // @match https://quizlet.com/* | |
| // @updateUrl https://gist.github.com/splintor/e466f39814f1c51995bb6a40fb6a6314/raw | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| 'use strict'; | |
| GM_addStyle('.SpecialCharactersToolbar { display: none; }'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment