Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Character CheerUp",
"description": "Bring cheerful characters to life on screen to lift your mood anytime!",
"version": "0.4.1",
"icons": {
"16": "images\/logo.png",
"48": "images\/logo.png",
"128": "images\/logo.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js\/content.js"
],
"css": [
"css\/content.css"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/www.gameforbreak.com\/*"
],
"js": [
"js\/character.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"js\/*",
"images\/*"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_icon": "images\/logo.png",
"default_popup": "setting.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"background": {
"service_worker": "js\/background.js"
}
}