Remove Chegg device limitation prompt
目前為
// ==UserScript==
// @name Chegg Device
// @namespace Chegg Device
// @match https://www.chegg.com/*
// @grant none
// @description Remove Chegg device limitation prompt
// @version 0.0.1.20210210085451
// ==/UserScript==
$("head").append(`
<style>
#cs-dm-swap {
display: none !important;
}
html.cs-dm-swap, body.cs-dm-swap {
overflow: inherit !important;
}
</style>
`);
$("#cs-dm-swap").remove();