Inspect and view changes in Focus4Software PhoneArmy - Edge 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
{
"manifest_version": 2,
"name": "Focus4Software PhoneArmy - Edge Extension",
"short_name": "F4S Edge Extension",
"author": "Focus4Software",
"description": "This will find phone numbers and convert them to hyperlinks to send sms via the Phone Captain",
"version": "1.3.22",
"permissions": [
"http://local.focus4software.com:8437/*",
"https://local.focus4software.com:8439/*",
"storage",
"notifications",
"*://*/*"
],
"icons": {
"16": "F4SPhoneArmy-Icon-16x16.png",
"48": "F4SPhoneArmy-Icon-48x48.png",
"128": "F4SPhoneArmy-Icon-128x128.png"
},
"background": {
"scripts": [
"background.js",
"jquery.min.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"popupHelpers.js",
"jquery.min.js",
"content.js",
"webSocketClient.js"
]
}
],
"browser_action": {
"default_icon": {
"128": "F4SPhoneArmy-Icon-Button-Red-128x128.png"
},
"default_title": "Focus4Software PhoneArmy - Chrome Extension"
},
"web_accessible_resources": [
"jquery.min.js",
"popupHelpers.js",
"webSocketClient.js",
"F4SPhoneArmy-Icon-Button-Red-128x128.png",
"F4SPhoneArmy-Icon-16x16.png",
"F4SPhoneArmy-Icon-48x48.png",
"F4SPhoneArmy-Icon-128x128.png"
],
"options_ui": {
"page": "options.html",
"chrome_style": true,
"browser_style": true
},
"options_page": "options.html",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}