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": "Universal Article to Gmail",
"version": "1.5.2",
"description": "Copy articles with formatting and insert into Gmail automatically. Configurable selectors with enhanced field detection.",
"permissions": [
"storage",
"clipboardWrite",
"sidePanel"
],
"host_permissions": [
"https:\/\/mail.google.com\/*",
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"tracing.js",
"content_script_article.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/mail.google.com\/mail\/*"
],
"js": [
"tracing.js",
"debug.js",
"content_script_gmail.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_title": "Article Selector Config",
"default_icon": "icon128.png"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"icons": {
"128": "icon128.png"
}
}