feat: 新增包文件
This commit is contained in:
26
packages/electron-chrome-extensions/spec/fixtures/rpc/manifest.json
vendored
Normal file
26
packages/electron-chrome-extensions/spec/fixtures/rpc/manifest.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "chrome-rpc",
|
||||
"version": "1.0",
|
||||
"browser_action": {
|
||||
"default_title": "RPC"
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["<all_urls>"],
|
||||
"js": ["content-script.js"],
|
||||
"run_at": "document_end"
|
||||
}
|
||||
],
|
||||
"background": {
|
||||
"scripts": ["background.js"],
|
||||
"persistent": true
|
||||
},
|
||||
"manifest_version": 2,
|
||||
"permissions": [
|
||||
"contextMenus",
|
||||
"nativeMessaging",
|
||||
"webRequest",
|
||||
"webRequestBlocking",
|
||||
"<all_urls>"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user