1 parent 5756351 commit b6da881Copy full SHA for b6da881
src/contentScript.js
@@ -363,7 +363,7 @@ function insertButton() {
363
364
// const writeSolutionButton = document.createElement("div");
365
const copyButton = buttons[i].cloneNode(true);
366
- copyButton.innerText = "复制所有内置用例";
+ copyButton.innerText = "复制用例";
367
copyButton.style["margin-left"] = "10px";
368
copyButton.onclick = () => {
369
const cases = getProviedTestCases();
@@ -375,7 +375,7 @@ function insertButton() {
375
};
376
buttons[i].parentElement.prepend(copyButton);
377
const writeSolutionButton = document.createElement("a");
378
- writeSolutionButton.innerText = "去写题解";
+ writeSolutionButton.innerText = "写题解";
379
writeSolutionButton.style["margin-right"] = "20px";
380
writeSolutionButton.style["line-height"] = "32px";
381
0 commit comments