Its a small utlity for DaDesktop app to enable auto clipboard feature.
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": "DaDesktop Clipboard Utility",
"version": "1.5",
"description": "Its a small utlity for DaDesktop app to enable auto clipboard feature.",
"icons": {
"48": "/icons/icon.png",
"96": "/icons/icon@2x.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{413fbfd1-3bff-426f-88e2-d31df6446756}",
"strict_min_version": "63.0"
}
},
"browser_action": {
"default_icon": {
"48": "/icons/icon.png",
"96": "/icons/icon@2x.png"
}
},
"permissions": [
"clipboardRead",
"clipboardWrite"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.dadesktop.cn/*",
"*://*.npg.io/*",
"*://*.dadesktop.com/*",
"*://*.dadesktop.pl/*",
"*://dadesktop.com/*",
"*://dadesktop.pl/*",
"*://dadesktop.cn/*"
],
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_start"
}
]
}