Inspect and view changes in scalebuild 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": "AI Writer",
"version": "3.5",
"description": "An extension to show an assistance box on specific websites.",
"action": {
"default_popup": "popup.html"
},
"permissions": [
"<all_urls>",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{297316e4-868c-4a4b-982a-ddf12121612f}",
"strict_min_version": "42.0"
}
}
}