1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-08 00:45:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

高级搜索添加右键菜单子项,及后台常驻js

This commit is contained in:
2022-01-28 17:42:43 +08:00
parent 6b0e0efcb3
commit 00b6dda1c5
3 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
chrome.contextMenus.create({
id: 'bitdance-advanced-search',
title: '高级搜索',
parentId: 'bitdance',
onclick: function (info) {
alert('当前菜单信息:'+ JSON.stringify(info))
alert("[BitDance extension] 学生助手插件 - 高级搜索 已点击菜单")
}
})

View File

@@ -0,0 +1 @@
console.log("[BitDance extension] 学生助手插件 - 高级搜索功能模块加载成功")