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": "Neko Pet - Virtual Desktop Cat",
"version": "1.1.0",
"description": "A cute pixel art cat that follows your mouse cursor across web pages",
"author": "Neko Pet Extension",
"permissions": [
"storage"
],
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_title": "Toggle Neko Pet",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"cat\/*.gif"
],
"matches": [
"<all_urls>"
]
}
]
}