37 lines
783 B
JSON
37 lines
783 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "VRChat Emoji Manager",
|
|
"version": "1",
|
|
"description": "Store more than 5 emoji, toggle them on and off and change their animation styles.",
|
|
"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"
|
|
}
|
|
} |