provides a button which allows you to send a webpage URL (link) via email.
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": 3,
"name": "__MSG_name__",
"version": "1.0.3",
"default_locale": "en",
"homepage_url": "https://gmplus.io?utm_source=gm_send",
"description": "provides a button which allows you to send a webpage URL (link) via email.",
"icons": {
"128": "icons/128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icons/128.png",
"default_title": "Send this link with Gmail"
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"permissions": [
"scripting",
"storage"
],
"host_permissions": [
"http://*/*",
"https://*/*",
"http://*.google.com/"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}