我已实施电子邮件跟踪功能。
当接收者打开电子邮件时,读取计数会增加。
但是当发件人打开电子邮件时,它也会增加读取计数器。
当发件人阅读电子邮件时,读取计数器是否有任何增加的方式?
提前致谢!
答案 0 :(得分:1)
在我的background.js
中,我使用了chrome.webRequest
API阻止了为发件人呈现像素图片的网络请求。
这样,当为发件人安装扩展程序时,如果发件人将阅读自己的电子邮件,则会阻止像素图像请求。
的参考代码//block all the requests to www.evil.com
chrome.webRequest.onBeforeRequest.addListener(
function(details) { return {cancel: true}; },
{urls: ["*://www.evil.com/*"]},
["blocking"]
);