Inspect and view changes in DataSnipper WebSnip Extension 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
{
"name": "DataSnipper WebSnip Extension",
"version": "0.2.1",
"manifest_version": 3,
"icons": {
"16": "img/logo-16.png",
"32": "img/logo-32.png",
"48": "img/logo-48.png",
"128": "img/logo-128.png"
},
"action": {
"default_title": "DataSnipper WebSnip",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background-script.bundle.js"
},
"web_accessible_resources": [
{
"matches": [],
"resources": [
"img/logo-16.png",
"img/logo-32.png",
"img/logo-48.png",
"img/logo-128.png",
"styles/snip-drawing-styles.css"
],
"use_dynamic_url": false
}
],
"commands": {
"_execute_action": {
"suggested_key": "Ctrl+Shift+S"
},
"command1textSnip": {
"suggested_key": "Ctrl+Shift+1",
"description": "Make a Text Snip"
},
"command2validationSnip": {
"suggested_key": "Ctrl+Shift+2",
"description": "Make a Validation Snip"
},
"command3exceptionSnip": {
"description": "Make an Exception Snip"
},
"command4sumSnip": {
"description": "Make a Sum Snip"
},
"command5tableSnip": {
"suggested_key": "Ctrl+Shift+5",
"description": "Make a Table Snip"
}
},
"permissions": [
"clipboardRead",
"clipboardWrite",
"activeTab",
"scripting",
"storage",
"unlimitedStorage",
"offscreen"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}