Created
March 23, 2017 21:59
-
-
Save cmcaine/9e0a9ec2225b1e211e9b09a6c1be6f8d to your computer and use it in GitHub Desktop.
Set default language to "en"
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 Default language = en | |
// @namespace cmcaine | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
// So hyphens work better. | |
if (window.document.documentElement.lang == "") { | |
window.document.documentElement.lang = "en"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment