我的比赛计划:
"content_scripts" : [
{
"matches" : [
"https://stackoverflow.com/questions#epic*"
],
"js" : ["silly.js"]
}
],
因此,如果用户去一个网页(如https://stackoverflow.com/questions )加入#epic
它会去https://stackoverflow.com/questions#epic但必须#epic
对URL的末尾,这将激活内容脚本silly.js
。
而这正是应该发生,但不起作用。