我希望在选项页面中输入的网址用户执行something.js
。
的manifest.json:
"content_scripts": [
{
"matches": [
"https://www.google.com/*"
],
"js": [
"something.js"
]
}
]
这样,它是硬编码的,我想让用户在Chrome扩展程序选项页面中输入所需的网址,并且输入的网址将作为matches_url
保存在存储中,并且当前网页的网址与{ {1}},matches_url
应该注入。
我该怎么做?