Skip to content

Commit

Permalink
fix: #39
Browse files Browse the repository at this point in the history
  • Loading branch information
g0ngjie committed Jul 11, 2023
1 parent ebe515b commit 5bddf85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ajax-proxy",
"private": true,
"description": "Modify your Ajax response to test",
"version": "2.2.5",
"version": "2.2.6",
"scripts": {
"dev": "pnpm -C ./packages/vue-panels serve",
"watch": "run-p watch:lib watch:chrome",
Expand Down
2 changes: 1 addition & 1 deletion packages/shell-chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Ajax Proxy",
"version": "2.2.5",
"version": "2.2.6",
"description": "Modify your Ajax response to test",
"author": "Gj",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shell-chrome/src/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { onLoadForDataConversion } from "@proxy/compatibility";

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

Expand Down

0 comments on commit 5bddf85

Please sign in to comment.