Inspect and view changes in Apidog Browser Extension 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",
"name": "Apidog Browser Extension",
"description": "All-in-One workspace for API Design, Documentation, Debug, Mock, Test.",
"version": "1.0.9",
"manifest_version": 3,
"icons": {
"96": "logo-96.png",
"128": "logo-128.png"
},
"permissions": [],
"host_permissions": [
"*://*/"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Apidog",
"default_icon": "logo-128.png"
},
"web_accessible_resources": [
{
"matches": [
"*://*/*"
],
"resources": [
"adapter.js"
]
}
],
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"runtime.js"
]
}
]
}