Skip to content

Commit

Permalink
Update DocCleaner.user.js
Browse files Browse the repository at this point in the history
  • Loading branch information
feast107 committed Mar 1, 2023
1 parent 110dc43 commit ae7c49e
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions DocCleaner.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -866,29 +866,31 @@
}
);

//学习啦
//学习啦
Startup.on(
"www.xuexila.com",
(context) => {
document.body.oncopy = null;
Global.inject(context.Visual.Element);
Global.inject(context.Visual.Element);
Global.loadVue();
Global.loadElement();
},
(context, __, plugins) => {
document.body.oncopy = null;
let app = Template.CreateApp(
let app = Template.CreateApp(
context.App,
plugins,
context.Visual.Element,
() => {
context.Visual.show();
}
);
app.$message.success("清除 Ctrl+C 限制");
},{
Visual: new UIElement("div", "Feast-app", true),App:{}
}
);
app.$message.success("清除 Ctrl+C 限制");
},
{
Visual: new UIElement("div", "Feast-app", true),
App: {},
}
);

//在以上区域编写
Expand Down

0 comments on commit ae7c49e

Please sign in to comment.