Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Contact Manager",
"version": "102.0",
"description": "A Chrome extension to manage contacts and automatically click the 'Call' button on the Google Voice web page.",
"permissions": [
"storage",
"alarms",
"notifications",
"identity",
"commands",
"windows",
"tabs",
"identity"
],
"action": {
"default_popup": "mini-popup.html",
"default_icon": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
},
"host_permissions": [
"https:\/\/www.google.com\/",
"https:\/\/worldtimeapi.org\/*",
"https:\/\/api.api-ninjas.com\/*",
"https:\/\/timeapi.io\/*",
"https:\/\/voice.google.com\/*",
"https:\/\/sheets.googleapis.com\/*",
"https:\/\/www.googleapis.com\/"
],
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src https:\/\/worldtimeapi.org https:\/\/www.google.com https:\/\/api.api-ninjas.com https:\/\/timeapi.io https:\/\/www.google.com https:\/\/sheets.googleapis.com https:\/\/www.googleapis.com;"
},
"oauth2": {
"client_id": "621771774933-r5i77a47rsea1h4q7pgvfv928dl52eq2.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/spreadsheets",
"https:\/\/www.googleapis.com\/auth\/calendar"
]
},
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/voice.google.com\/*"
],
"js": [
"content.js"
]
}
],
"commands": {
"open-popup": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "Open the popup"
}
}
}