Blocks CTRL+S / CMD+S keyborad shortcut on websites, where you probably don't need it.
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": 2,
"name": "DeSaveify",
"version": "1.0",
"description": "Blocks CTRL+S keyborad shortcut on websites, where you probably don't need it.",
"icons": {
"48": "icons/icon-48.png"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"main.js"
]
}
]
}