Skip to content

Instantly share code, notes, and snippets.

@splintor
Created February 6, 2020 19:47
Show Gist options
  • Save splintor/e466f39814f1c51995bb6a40fb6a6314 to your computer and use it in GitHub Desktop.
Save splintor/e466f39814f1c51995bb6a40fb6a6314 to your computer and use it in GitHub Desktop.
Quizlet - Hide accent bar
// ==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