Inspect and view changes in GrammFix: AI Writer Helper source codes across current and past versions
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": 2,
"name": "GrammFix: AI Writer Helper",
"version": "3.2",
"description": "GrammFix includes grammar correction, style improvements, translations, and more. Works on all sites. Free to use.",
"permissions": [
"storage",
"https://app.intovation.io/*"
],
"browser_action": {
"default_icon": {
"16": "./assets/icon/logo16.png",
"32": "./assets/icon/logo32.png",
"48": "./assets/icon/logo48.png",
"128": "./assets/icon/logo128.png"
},
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"commands": {
"open-popup": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Command+Shift+K"
},
"description": "Open GrammFix popup"
}
},
"icons": {
"16": "./assets/icon/logo16.png",
"32": "./assets/icon/logo32.png",
"48": "./assets/icon/logo48.png",
"128": "./assets/icon/logo128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{949b1e6a-f80b-45d8-b3f6-c8b299cea2d1}"
}
}
}