Fix: [Extension] Use extension API make sure page open successfully
parent
9607580e8b
commit
b17bb37c38
@ -1 +1,13 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
<script src="./popup.js"></script>
|
<script src="./popup.js"></script>
|
||||||
|
<a href="./index.html" target="_blank">
|
||||||
|
<button>立即使用</button>
|
||||||
|
</a>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
|
@ -1,2 +1,5 @@
|
|||||||
const bs = chrome || browser
|
const bs = chrome || browser
|
||||||
window.open(bs.runtime.getURL('./index.html'))
|
bs.tabs.create({
|
||||||
|
url: bs.runtime.getURL('./index.html')
|
||||||
|
}, tab => console.log(tab))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue