pear3
Version:
Undetectable Chrome automation with a fully automated Chromium using extension APIs. 😎
29 lines • 594 B
JSON
{
"manifest_version": 3,
"name": "PearSystem",
"version": "1.0",
"description": "",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"html2canvas.min.js", "index.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"cookies",
"tabs"
]
}