我是Chrome扩展的新手,我正在尝试创建一个简单的扩展,如果匹配元素类,它会关闭当前标签。
这是我在内容脚本中的代码:
H_MEP_ID|MeasureDate|MeasureDateTime |ID
12312 |2015-10-02 |2015-10-02 23:00 |72
12312 |2015-11-01 |2015-11-01 23:00 |72
12312 |2015-11-02 |2015-11-02 23:00 |72
12312 |2016-06-16 |2016-06-16 23:00 |83
我需要“CLOSECCURENTTAB”功能..
帮助我!
编辑:
完成它!!
内容脚本:
$(document).ready(function() {
if ($(".watchdogedit").length > 0) {
setTimeout(CLOSECURRENTAB,3000);
}
});
后台脚本:
$(document).ready(function(){
if ($(".watchdogedit").length > 0) {
setTimeout(closeTab, 3000);
}
});
function closeTab() {
chrome.runtime.sendMessage({type: "closeTab"});
}