Inspect and view changes in Digital Pet source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Digital Pet",
"version": "1.1",
"description": "A virtual pet companion for your browser. Feed, play with, and care for your digital pet while browsing.",
"icons": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
},
"permissions": [
"storage",
"activeTab"
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
}
},
"background": {
"service_worker": "src/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/soundManager.js",
"src/content.js"
],
"css": []
}
],
"web_accessible_resources": [
{
"resources": [
"assets/pets/*.png",
"assets/accessories/*.png",
"assets/sounds/*.wav"
],
"matches": [
"<all_urls>"
]
}
]
}