Inspect and view changes in Grammar Guru 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
{
"version": "1.0.5",
"manifest_version": 3,
"name": "Grammar Guru",
"description": "Elevating your language skills with intelligent assistance and personalized feedback",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"css/line-awesome.min.css",
"css/fonts.css"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"externally_connectable": {
"matches": [
"https://grammar-guru.lazymanstudios.in/*",
"http://localhost:3000/*"
]
},
"web_accessible_resources": [
{
"resources": [
"svg/*",
"css/*",
"fonts/*",
"*.html",
"icons/*"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}