Unlocks all card mechanics in Dueling Book
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Dueling Book Unlock",
"manifest_version": 3,
"version": "10.1",
"description": "Unlocks all card mechanics in Dueling Book",
"permissions": [
"tabs",
"storage",
"scripting",
"webNavigation",
"offscreen"
],
"action": {
"default_title": "Settings",
"default_icon": "icon.png",
"default_popup": "onextensionpressed.html"
},
"host_permissions": [
"*://*.duelingbook.com/"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"MD_Sounds/Draw_Limited.mp3",
"*.js",
"*.html"
],
"matches": [
"*://*.duelingbook.com/*"
]
}
],
"externally_connectable": {
"matches": [
"*://*.duelingbook.com/*"
]
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}