vrchat-emoji-manager/manifest.json

38 lines
857 B
JSON

{
"manifest_version": 3,
"name": "VRChat Emoji Manager",
"version": "1.2023.11.1",
"description": "Store more than 5 emoji, toggle them on and off and change their animation styles.",
"homepage_url": "https://gitea.moe/lamp/vrchat-emoji-manager",
"icons": {
"128": "icon128.png"
},
"permissions": [
"storage",
"unlimitedStorage",
"webRequest"
],
"host_permissions": [
"https://vrchat.com/home*",
"https://api.vrchat.cloud/*",
"https://files.vrchat.cloud/*"
],
"externally_connectable": {
"matches": ["https://vrchat.com/home*"]
},
"content_scripts": [
{
"matches": ["https://vrchat.com/home*"],
"js": ["content-script.js"],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"options_page": "manage.html",
"action": {
"default_popup": "popup.html"
}
}