Commit inicial

This commit is contained in:
Paulo Porto
2026-04-30 12:38:36 -03:00
commit 45cfceff0e
5 changed files with 8182 additions and 0 deletions

38
manifest.json Normal file
View File

@@ -0,0 +1,38 @@
{
"manifest_version": 3,
"name": "Arch Panel Injector",
"version": "1.0.0",
"description": "Insere o botao Arch panel no header do Oracle Workload Workbench.",
"permissions": [
"cookies",
"scripting",
"tabs"
],
"host_permissions": [
"https://comcipapic-oalprod.integration.ocp.oraclecloud.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://spa.oracle.com/oalcrm/web/api/g2m-consumer-application/ui/index.html*"
],
"js": [
"content-script.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"page-bridge.js"
],
"matches": [
"https://spa.oracle.com/*"
]
}
]
}