diff --git a/public/manifest.json b/public/manifest.json index 0a791e1..d97cfb8 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Easy Interceptor", - "version": "1.17.1", + "version": "1.17.2", "description": "__MSG_description__", "permissions": [ "storage", @@ -20,7 +20,7 @@ "default_locale": "zh_CN", "content_security_policy" : "script-src 'self' 'unsafe-eval'; script-src-elem 'self' data: blob: https://unpkg.com; worker-src 'self' data: blob:; object-src 'self'", "browser_action": { - "default_title": "Easy Interceptor by hans000 - v1.17.1", + "default_title": "Easy Interceptor by hans000 - v1.17.2", "default_popup": "index.html", "default_icon": "images/128-gray.png" }, diff --git a/src/tools/log.ts b/src/tools/log.ts index bfb22b8..f54fa75 100644 --- a/src/tools/log.ts +++ b/src/tools/log.ts @@ -11,7 +11,7 @@ const config = { } export function log(message: any, type: 'info' | 'warn' | 'error' = 'info') { - console.log(`%c ${ExtensionName} %c log `, `color:white;background-color:${config[type]}`, 'color:green;background-color:black', message) + console.log(`%c ${ExtensionName} %c ${type} `, `color:white;background-color:${config[type]}`, 'color:green;background-color:black', message) } export function sendLog(msg: any) {