我目前正在尝试检索用户右键单击的链接标题(弹出上下文菜单时)。我想检索他们右键单击的页面标题来显示它,我无法弄明白。我尝试使用和AJAX请求链接从它的src获取标题,但所有谷歌右键单击都是重定向链接。有没有人知道如何从重定向链接或直接从上下文菜单获取网站的标题?
// wipe the context menu so no duplicates
chrome.contextMenus.removeAll(function() {
//context menu customization
chrome.contextMenus.create({
title: "Do stuff",
contexts: ["link"], // ContextType
onclick: addLinkToList // A callback function that stores the links that were clicked
});
});
以上是创建上下文菜单的代码。我的addlinktolist函数存储了单击的链接,但我也想让它获取页面的标题。
提前致谢。