Update subproject commit to indicate a dirty state

This commit is contained in:
2026-01-18 01:45:07 +01:00
parent e73ddd52ad
commit 99413db4f4
24 changed files with 1001 additions and 2229 deletions

View File

@@ -1,44 +1,49 @@
{
"manifest_version": 3,
"name": "EShip Auth Extension",
"version": "1.0.0",
"description": "Authentication extension for EShip protected web app",
"permissions": [
"storage",
"activeTab",
"tabs"
],
"host_permissions": [
"http://localhost:5173/*",
"http://localhost:3000/*",
"http://localhost:3001/*",
"https://appwrite.webklar.com/*"
],
"background": {
"service_worker": "background/service-worker.js"
},
"action": {
"default_popup": "popup/popup.html",
"default_title": "EShip Login"
},
"name": "Protected Extension",
"version": "0.1.0",
"action": { "default_popup": "popup.html" },
"background": { "service_worker": "background.js", "type": "module" },
"content_scripts": [
{
"matches": ["http://localhost:5173/*", "http://localhost:3000/*"],
"js": ["content/content-script.js"],
"run_at": "document_start"
"matches": ["http://localhost:*/*", "https://*/*"],
"js": ["content-script.js"],
"run_at": "document_idle"
},
{
"matches": [
"*://*.ebay.de/*",
"*://*.ebay.com/*",
"*://*.ebay.co.uk/*",
"*://*.ebay.fr/*",
"*://*.ebay.it/*",
"*://*.ebay.es/*",
"*://*.ebay.nl/*",
"*://*.ebay.at/*",
"*://*.ebay.ch/*",
"*://*.ebay.com.au/*",
"*://*.ebay.ca/*"
],
"js": ["ebay-content-script.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": ["lib/*", "config.js"],
"matches": ["http://localhost:5173/*", "http://localhost:3000/*"]
}
]
"permissions": ["tabs", "scripting", "storage"],
"host_permissions": [
"https://*/*",
"*://*.ebay.de/*",
"*://*.ebay.com/*",
"*://*.ebay.co.uk/*",
"*://*.ebay.fr/*",
"*://*.ebay.it/*",
"*://*.ebay.es/*",
"*://*.ebay.nl/*",
"*://*.ebay.at/*",
"*://*.ebay.ch/*",
"*://*.ebay.com.au/*",
"*://*.ebay.ca/*"
],
"externally_connectable": {
"matches": ["http://localhost:*/*", "https://*/*"]
}
}