Skip to content

Commit 5bddf85

Browse files
committed
fix: #39
1 parent ebe515b commit 5bddf85

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ajax-proxy",
33
"private": true,
44
"description": "Modify your Ajax response to test",
5-
"version": "2.2.5",
5+
"version": "2.2.6",
66
"scripts": {
77
"dev": "pnpm -C ./packages/vue-panels serve",
88
"watch": "run-p watch:lib watch:chrome",

packages/shell-chrome/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Ajax Proxy",
4-
"version": "2.2.5",
4+
"version": "2.2.6",
55
"description": "Modify your Ajax response to test",
66
"author": "Gj",
77
"icons": {

packages/shell-chrome/src/content.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { onLoadForDataConversion } from "@proxy/compatibility";
1818

1919
// 在页面上插入代码
2020
const script = document.createElement("script");
21-
script.setAttribute("type", "module");
21+
script.setAttribute("type", "text/javascript");
2222
script.setAttribute("src", chrome.runtime.getURL("document.js"));
2323
document.documentElement.appendChild(script);
2424

0 commit comments

Comments
 (0)