我想将 ethereumjs-tx.js 包含在不带 content_scripts 的 manifest.js` 中。
我的manifest.js:
{
"manifest_version": 2,
"name": "MyExtension",
"version": "1.0",
"background": {
"scripts": ["background.js"]
},
"permissions": [
"tabs",
"notifications",
"http://*/",
"https://*/"
]
}
Run Code Online (Sandbox Code Playgroud)