CI / Lint (push) Canceled after 0s
CI / Build Test (stage-web) (push) Canceled after 0s
CI / Build Test (ui-loading-screens) (push) Canceled after 0s
CI / Build Test (ui-transitions) (push) Canceled after 0s
CI / Unit Test (push) Canceled after 0s
CI / Type Check (push) Canceled after 0s
CI / Check Provenance (push) Canceled after 0s
Sync Labels / sync-labels (push) Successful in 1m43s
- Remove stage-tamagotchi, stage-pocket, server, and engine workspaces with their workflows, addons, and docs - Switch the toolchain from pnpm to bun, replace lockfiles with bun.lock - Rewrite remaining product references to Moeka
43 lines
879 B
JSON
43 lines
879 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Moeka Desktop Grounding Bridge",
|
|
"version": "1.0.0",
|
|
"description": "Read-only DOM observation bridge for Moeka desktop grounding (no DOM mutation, no eval)",
|
|
|
|
"permissions": [
|
|
"activeTab",
|
|
"tabs",
|
|
"webNavigation"
|
|
],
|
|
"host_permissions": ["<all_urls>"],
|
|
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle",
|
|
"all_frames": true,
|
|
"match_about_blank": true,
|
|
"world": "MAIN"
|
|
},
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["msg_bridge.js"],
|
|
"run_at": "document_idle",
|
|
"all_frames": true,
|
|
"match_about_blank": true,
|
|
"world": "ISOLATED"
|
|
}
|
|
],
|
|
|
|
"icons": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
}
|
|
}
|