Inspect and view changes in Annoying Goose 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
{
"manifest_version": 3,
"name": "Annoying Goose",
"version": "1.5",
"description": "A playful goose that will enhance your browsing experience with some crazy antics.",
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"31": "images/ui/goose31.png",
"62": "images/ui/goose62.png",
"124": "images/ui/goose124.png"
}
},
"background": {
"service_worker": "background.js"
},
"icons": {
"31": "images/ui/goose31.png",
"62": "images/ui/goose62.png",
"124": "images/ui/goose124.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"styles.css"
],
"js": [
"main.js",
"engine.js",
"timer.js",
"assetManager.js",
"animator.js",
"entities/goose.js",
"entities/honk.js",
"entities/shadow.js",
"entities/egg.js",
"entities/gosling.js",
"entities/textbox.js",
"entities/target.js",
"entities/puddle.js",
"entities/discoBall.js",
"entities/footprints.js",
"entities/mud.js"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"images/*",
"audio/*",
"fonts/*"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}