mirror of
https://github.com/electron/electron.git
synced 2026-02-19 03:14:51 -05:00
17 lines
284 B
JSON
17 lines
284 B
JSON
{
|
|
"name": "chrome-api",
|
|
"version": "1.0",
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["main.js"],
|
|
"run_at": "document_start"
|
|
}
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": false
|
|
},
|
|
"manifest_version": 2
|
|
}
|