Inspect and view changes in Corrector App 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": 3,
"name": "Corrector App",
"version": "1.0.0",
"description": "Proofread with Corrector App!",
"permissions": [
"contextMenus",
"storage"
],
"action": {
"default_icon": {
"16": "images/icon.png",
"32": "images/icon.png",
"128": "images/icon.png"
},
"default_title": "Corrector App",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"jquery.min.js",
"content_script.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"icons": {
"128": "images/icon.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}