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",
"name": "AI Writing Assistant",
"version": "1.0.2",
"manifest_version": 3,
"description": "AI-powered writing assistant. Select text on any website and rewrite it in different tones. Free trial included.",
"homepage_url": "https:\/\/github.com\/bmsalama\/writing-assistant",
"permissions": [
"identity",
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/wqh1vkh88b.execute-api.us-east-1.amazonaws.com\/*",
"https:\/\/www.googleapis.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"default_locale": "en"
}