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 9607580e8b
commit b17bb37c38
No known key found for this signature in database
GPG Key ID: E63F9C7303E8F604
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))