if node.isEditable() then
service.execute("粘贴",node)
service.speak("已粘贴")
return true
end

text=tostring(service.getText(node))
if text:find("%d%d%d%d%d") or text:find("http") then
service.plugin("提取网址和号码",node)
service.plugin("提取号码",node)
service.plugin("提取网址",node)
return true
end


service.execute("高级菜单",node)return true