Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Copy Email Link",
"description": "Easily generate a reliable link to a specific email thread in a particular inbox",
"version": "2.0",
"author": "Seth Battis",
"icons": {
"16": "assets\/images\/logo-16px.png",
"32": "assets\/images\/logo-32px.png",
"48": "assets\/images\/logo-48px.png",
"128": "assets\/images\/logo-128px.png"
},
"action": {
"default_icon": "assets\/images\/logo-128px.png"
},
"permissions": [
"activeTab",
"identity",
"identity.email",
"notifications"
],
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"scripts\/content.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "scripts\/service_worker.js"
}
}