- 添加TailwindCSS依赖并配置Vite插件 - 修改App.vue中的文本内容 - 清理background.js中的冗余日志 - 更新index.html中的脚本路径以支持本地开发 - 在manifest.json中添加localhost权限和CSP配置
		
			
				
	
	
		
			14 lines
		
	
	
		
			396 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			396 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="UTF-8" />
 | 
						|
    <link rel="icon" type="image/svg+xml" href="./vite.svg" />
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
						|
    <title>Vite + Vue + TS</title>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <div id="app"></div>
 | 
						|
    <script type="module" src="http://localhost:5173/src/main.ts" crossorigin></script>
 | 
						|
  </body>
 | 
						|
</html>
 |