Files
wehub-resource-sync f4ed7901c3
Module Market Check / Validate modules/ (push) Failing after 1s
Android CI Build / check (push) Failing after 1s
Module Market Publish / Generate submissions.json (push) Failing after 1s
Android CI Build / package-apks (push) Has been skipped
chore: import upstream snapshot with attribution
2026-07-13 12:29:44 +08:00

41 lines
1.1 KiB
JSON

{
"id": "wta-hello-world",
"name": "Hello World",
"description": "A minimal example module. Shows a floating banner with a configurable greeting. Open the source on GitHub and use it as a template for your own modules.",
"icon": "auto_awesome",
"category": "OTHER",
"tags": ["demo", "example", "starter"],
"version": {
"code": 1,
"name": "1.0.0",
"changelog": "Initial release."
},
"author": {
"name": "shiaho",
"url": "https://github.com/shiaho777"
},
"runAt": "DOCUMENT_END",
"urlMatches": [
{ "pattern": "*", "isRegex": false, "exclude": false }
],
"permissions": ["DOM_ACCESS", "CSS_INJECT"],
"configItems": [
{
"key": "greeting",
"name": "Greeting text",
"description": "Shown in the floating banner.",
"type": "TEXT",
"defaultValue": "Hello from WebToApp!",
"required": false
},
{
"key": "durationMs",
"name": "Banner duration (ms)",
"description": "How long the banner stays visible.",
"type": "NUMBER",
"defaultValue": "3000",
"required": false
}
]
}