Inspect and view changes in QA Sidekick 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": "QA Sidekick",
"version": "1.1.0",
"description": "The most efficient way for teams to manage product testing.",
"permissions": [
"storage"
],
"background": {
"service_worker": "./static/js/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": false,
"js": [
"./browser-polyfill.js",
"./static/js/content.js",
"./jquery.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"action": {
"default_icon": {
"128": "icon-128.png"
},
"default_title": "QA Sidekick"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"web_accessible_resources": [
{
"resources": [
"popup.html",
"browser-polyfill.js",
"/static/*",
"jquery.js"
],
"matches": [
"<all_urls>"
]
}
]
}