- Markenname 'Bewerbungs-Tracker' -> 'NextJobs' im gesamten UI, Footer (incl. nextjobs.cc Copyright), Login, Wortmarke in der Top-Navi (Next + Jobs-Gradient), Favicon, Swagger/OpenAPI-Titel, CalDAV-PRODID, Browser-Erweiterung (manifest, content, background), Runner-Log und Doku. - Funktionale Begriffe (Bewerbungsunterlagen, -datum etc.) bleiben. - Docker-Registry (git.hackner.dev) als Infrastruktur unberuehrt. Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
805 B
JSON
30 lines
805 B
JSON
{
|
||
"manifest_version": 3,
|
||
"name": "NextJobs – Stellen-Import",
|
||
"version": "1.1.0",
|
||
"description": "Erfasst Stellen von jeder Webseite (nicht nur Indeed) über das Erweiterungs-Popup und sendet sie an den NextJobs, der automatisch zugeschnittene Bewerbungsunterlagen erstellt.",
|
||
"permissions": ["storage", "scripting", "activeTab"],
|
||
"host_permissions": [
|
||
"*://*.indeed.com/*",
|
||
"http://localhost/*",
|
||
"http://127.0.0.1/*",
|
||
"http://*/*",
|
||
"https://*/*"
|
||
],
|
||
"content_scripts": [
|
||
{
|
||
"matches": ["*://*.indeed.com/*"],
|
||
"js": ["content.js"],
|
||
"css": ["content.css"],
|
||
"run_at": "document_idle"
|
||
}
|
||
],
|
||
"background": {
|
||
"service_worker": "background.js"
|
||
},
|
||
"action": {
|
||
"default_popup": "popup.html",
|
||
"default_title": "NextJobs"
|
||
}
|
||
}
|