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": "Write Better AI - GPT Text Editor & Writing Assistant",
"version": "1.0.2",
"description": "Improve your writing with AI-powered text rewriting. Simple, fast, and secure - just bring your OpenAI API key.",
"permissions": [
"contextMenus",
"activeTab",
"storage",
"commands"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "dist\/background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon_16.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
}
},
"icons": {
"16": "images\/icon_16.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dist\/content.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"commands": {
"rewrite-text": {
"suggested_key": {
"default": "Ctrl+Shift+R",
"mac": "Command+Shift+R"
},
"description": "Rewrite selected text with AI"
}
}
}