非官方下载的chrome扩展无法启用的解决方法: 直接加载你的开发文件夹就行了
右键菜单的父子关系使用id和parentId之间关系确定
获取cookie (能够获取到http only的cookie)
chrome.cookies.getAll({"url" : "http://122.114.206.219:81/welcome"}, function(cookies){
alert(cookies);
});
笔记:
1.contentscript不能创建鼠标右键,因为只能访问4个API,可以方位DOM,但是不能访问JS,DOM也无法调用contenscript,所以可以注入injectjs
2.chrome扩展调试
3.background中要调用其他js脚本,也需要在 {"scripts": ["js/background.js", “js/showcode.js”]}这样添加
想要在web中直接访问插件中的资源的话必须显示声明才行
4.Project Naptha 在线ocr识别,怎么用?
5.content-scripts和原始页面共享DOM,但是不共享JS,如要访问页面JS(例如某个JS变量),只能通过injected js来实现
6.在popup里不能直接写js,要在外部引用js里实现
7.https://chajian.baidu.com/developer/apps/permissions.html
8.document.getElementsByClassName('text-left td-name')[0].getElementsByTagName("a")[0].click()
document.getElementsByClassName('assistant')[0].getElementsByTagName("a")[0].click()