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": "Email Signature Templates",
"version": "2.2.1",
"description": "Use a professional email signature template or create your own \u2014 apply it instantly with one click",
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Toggle Template Popup",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/outlook.office365.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"popup.html",
"popup.js",
"styles.css",
"templates\/*"
],
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/outlook.office365.com\/*"
]
}
]
}