Greasy Fork is available in English.
优化考试宝答题界面UI,增加按键绑定
< Rückmeldungen auf 考试宝答题界面优化
将removeExtraElement函数替换为下列的代码显示ai解析function removeExtraElement() { GM_addStyle(` /* 居中主容器 */ .app-main { display: flex; justify-content: center; align-items: center; padding: 0; } /* 优化主容器UI */ .middle-container { padding: 10px ${16 + 19 + 16 + 10}px; border-radius: 10px; } /*显示ai解析*/ .prative-page .answer-box .hide-height .answer-analysis { margin-right: 8px; width: 100%; -webkit-line-clamp: 1; overflow: hidden; white-space: normal; } /* 隐藏多余元素 */ .vip-quanyi, .new-footer, .header, .vip-tips, .right-float-window,.el-button.el-button--warning.el-button--mini, .page-main .pull-right > :not(.serch-form) { display: none; } `);}
更新了
Anmelden um eine Antwort zu senden.
将removeExtraElement函数替换为下列的代码显示ai解析
function removeExtraElement() {
GM_addStyle(`
/* 居中主容器 */
.app-main {
display: flex;
justify-content: center;
align-items: center;
padding: 0;
}
/* 优化主容器UI */
.middle-container {
padding: 10px ${16 + 19 + 16 + 10}px;
border-radius: 10px;
}
/*显示ai解析*/
.prative-page .answer-box .hide-height .answer-analysis {
margin-right: 8px;
width: 100%;
-webkit-line-clamp: 1;
overflow: hidden;
white-space: normal;
}
/* 隐藏多余元素 */
.vip-quanyi,
.new-footer,
.header,
.vip-tips,
.right-float-window,
.el-button.el-button--warning.el-button--mini,
.page-main .pull-right > :not(.serch-form)
{
display: none;
}
`);
}