我为netflix写了一个非常简单的程序,它有几千个用户。每隔一段时间,我都会收到一条带有评论的1星评价评论,"它不起作用"。我的内容脚本就是这样:
background.js:
setInterval(function(){try{document.getElementsByClassName("button continue-playing")[0].click()}catch(e){}}, 33);
的manifest.json:
{
"manifest_version": 2,
"name": "Netflix Pause Removal",
"version": "1.0.1",
"description": "Remove the pause between netflix episodes",
"content_scripts": [{
"matches":["http://www.netflix.com/*"],
"js":["background.js"]
}]
}
虽然我有成千上万的快乐用户,但每隔一段时间我就会让一位用户说它不起作用:https://chrome.google.com/webstore/detail/netflix-pause-removal/mfekcpndbpdgjjfahekhncdfegkhbghg/reviews
使应用程序不起作用的可能性有哪些?