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",
"name": "Copywrite & Paste - AI writing Assistant",
"version": "1.0.6",
"description": "Easiest and most powerful gmail writing tool. Built in library of 100000s of templates, AI writing assistant, and more.",
"manifest_version": 3,
"author": "Joey Malope",
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*",
"http:\/\/localhost:5001\/*"
],
"all_frames": true,
"js": [
"assets\/js\/contentScript.js"
],
"css": [
"assets\/css\/embed.css"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"assets\/images\/loader.gif",
"assets\/images\/loader2.gif",
"assets\/images\/icon128.png"
],
"matches": [
"https:\/\/mail.google.com\/*"
]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"http:\/\/*.google.com\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "assets\/images\/icon16.png",
"32": "assets\/images\/icon32.png",
"48": "assets\/images\/icon48.png",
"128": "assets\/images\/icon128.png"
},
"action": {
"default_icon": {
"16": "assets\/images\/icon16.png",
"32": "assets\/images\/icon32.png",
"48": "assets\/images\/icon48.png",
"128": "assets\/images\/icon128.png"
},
"default_title": "Copywrite & Paste",
"default_popup": "popup.html"
}
}