mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 14:11:50 +03:00
15 lines
283 B
JSON
15 lines
283 B
JSON
|
{
|
||
|
"name": "Simple extension",
|
||
|
"version": "0.1",
|
||
|
"background": {
|
||
|
"scripts": ["index.js"]
|
||
|
},
|
||
|
"content_scripts": [{
|
||
|
"matches": ["<all_urls>"],
|
||
|
"css": [],
|
||
|
"js": ["content-script.js"]
|
||
|
}],
|
||
|
"permissions": ["background", "activeTab"],
|
||
|
"manifest_version": 2
|
||
|
}
|