The YouNeed extension to start phone calls from web pages
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "YouNeed Phone",
"version": "1.0.2",
"description": "The YouNeed extension to start phone calls from web pages",
"manifest_version": 3,
"permissions": [
"storage"
],
"host_permissions": [
"*://*.web.youneed.it/*"
],
"action": {},
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": false,
"js": [
"content_script.js"
]
}
]
}