add load complete message

This commit is contained in:
buzz-lightsnack-2007 2024-05-02 09:40:29 +08:00
parent f4821010b0
commit e944977cb7
2 changed files with 4 additions and 1 deletions

View file

@ -198,6 +198,9 @@
"entry_contextMenu": {
"message": "Open in ShopAI…"
},
"scrape_msg_ready": {
"message": "Loading complete, processing…"
},
"JSON_parse_error": {
"message": "There is a mistake in your JSON formatting. Please correct the error before saving."

View file

@ -25,7 +25,7 @@ export default class watch {
document.onreadystatechange = async () => {
if (document.readyState == 'complete' && await global.read([`settings`, `behavior`, `autoRun`])) {
console.log(`Loading complete, processing…`);
new logging((new texts(`scrape_msg_ready`)).localized);
let PROC = new processor(filter);
}
};