2023.03.09 新增右键发送文本至 Memos 输入框。

This commit is contained in:
lmm214
2023-03-09 23:25:08 +08:00
parent e740545dad
commit deec1e77a5
3 changed files with 19 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
chrome.runtime.onInstalled.addListener(() => {
chrome.contextMenus.create(
{
type: 'normal',
title: '发送 “%s” 至 Memos ',
id: 'Memos-send',
contexts: ['all']
},
)
})
chrome.contextMenus.onClicked.addListener(info => {
chrome.storage.sync.set({open_action: "save_text",open_content:info.selectionText});
})