improve IQ, problem solving skills, mood etc with this puzzle game
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Daily 3D Puzzle New Tab",
"description": "improve IQ, problem solving skills, mood etc with this puzzle game ",
"version": "1.0.0.3",
"manifest_version": 3,
"icons": {
"16": "./icons/icon16.png",
"24": "./icons/icon24.png",
"32": "./icons/icon32.png",
"48": "./icons/icon48.png",
"64": "./icons/icon64.png",
"128": "./icons/icon128.png",
"256": "./icons/icon256.png",
"512": "./icons/icon512.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"all_frames": false,
"matches": [
"https://puzzle-generator-online-r906.onrender.com/donate/*"
],
"js": [
"comm_cs.js"
],
"run_at": "document_end"
}
],
"action": {
"default_icons": {
"16": "./icons/icon16.png",
"24": "./icons/icon24.png",
"32": "./icons/icon32.png",
"48": "./icons/icon48.png",
"64": "./icons/icon64.png",
"128": "./icons/icon128.png",
"256": "./icons/icon256.png",
"512": "./icons/icon512.png"
},
"default_title": "Puzzles"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"<all_urls>"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}