Inspect and view changes in WebEdit AI - ai web annotation tool 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "WebEdit AI - ai web annotation tool",
"description": "A Chrome extension that provides annotation, and AI assistant features for web pages.",
"version": "1.0.1",
"options_ui": {
"page": "options.html"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/vendor.js",
"js/content_script.js"
]
}
],
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"storage",
"scripting"
]
}