update tip page

This commit is contained in:
2018-09-28 15:41:41 +08:00
parent 78fa48beb0
commit e1d36eb6fc
5 changed files with 18 additions and 65 deletions

14
popup/tip.js Normal file
View File

@ -0,0 +1,14 @@
$().ready(
() => {
$("#link-extension-detail").on('click', () => {
chrome.tabs.create({
'url': `chrome://extensions/?id=${chrome.runtime.id}`
});
})
$("#link-document").on('click', () => {
chrome.tabs.create({
'url': `https://git.jebbs.co/jebbs/data-extracter-extesion`
});
})
}
);