Fix: [Extension] Use extension API make sure page open successfully

This commit is contained in:
MengYX 2021-02-08 04:50:00 +08:00
parent 9728be6f0d
commit 1ff5e51afc
2 changed files with 16 additions and 1 deletions

View File

@ -1 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<script src="./popup.js"></script>
<a href="./index.html" target="_blank">
<button>立即使用</button>
</a>
</body>
</html>

View File

@ -1,2 +1,5 @@
const bs = chrome || browser
window.open(bs.runtime.getURL('./index.html'))
bs.tabs.create({
url: bs.runtime.getURL('./index.html')
}, tab => console.log(tab))