Detect anchor links and call using crm
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",
"author": "Matthew",
"name": "Click to Call",
"offline_enabled": false,
"options_page": "telephony_new.html",
"description": "Detect anchor links and call using crm",
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": {
"19": "images/19.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"default_title": "Click to Call"
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://media.twiliocdn.com/sdk/js/client/v1.4/twilio.min.js; object-src 'self' blob:;",
"content_scripts": [
{
"all_frames": true,
"css": [
"css/bootstrap.min.css",
"css/style.css"
],
"js": [
"js/jquery-1.10.2.min.js",
"js/bootstrap.min.js",
"js/ContentPage.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_end"
}
],
"icons": {
"19": "images/19.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"options_ui": {
"page": "telephony_new.html",
"chrome_style": true,
"open_in_tab": true
},
"manifest_version": 2,
"permissions": [
"tabs",
"storage",
"contextMenus",
"http://*.twilio.com/",
"https://*.twilio.com/",
"http://*.twiliocdn.com/"
],
"version": "1.56",
"web_accessible_resources": [
"js/jquery-1.10.2.min.map",
"images/*",
"https://media.twiliocdn.com/sdk/js/client/v1.4/twilio.min.js",
"dial.html"
]
}