Inspect and view changes in WebPhone Expansion 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "WebPhone Expansion",
"description": "Detect website phone number and make a call.(Not an automatic call)",
"version": "3.1",
"browser_action": {
"default_icon": "images/48.png",
"default_title": "WebPhone Expansion",
"default_popup": "popup.html"
},
"icons": {
"16": "images/16.png",
"48": "images/48.png",
"128": "images/128.png"
},
"background": {
"page": "background.html",
"persistent": true
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"css/content.css",
"css/jquery-ui.css",
"css/jquery.tagit.css",
"css/jquery.bxslider.css",
"css/slider-custom.css"
],
"js": [
"js/jquery-1.11.2.min.js",
"js/jquery-ui.min.js",
"js/message.js",
"js/content.js",
"js/webrtc/call.js",
"js/webrtc/jssip.min.js",
"js/tag-it.js",
"js/jquery.bxslider.js"
]
}
],
"web_accessible_resources": [
"images/*.png",
"images/*.svg",
"js/webrtc/sounds/*.wav"
]
}