Inspect and view changes in BugBot 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",
"author": "seasia infotech",
"name": "BugBot",
"manifest_version": 3,
"version": "0.0.0.3",
"background": {
"service_worker": "background.js"
},
"description": "Help you to fill your form , record screen , take screenshot and many more",
"permissions": [
"contextMenus",
"scripting",
"activeTab",
"desktopCapture",
"bookmarks"
],
"icons": {
"128": "/images/bot.png"
},
"action": {
"default_popup": "auth/login.html"
},
"devtools_page": "locator/devtools.html",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js",
"common.js",
"locator/locatorContent.js",
"locator/panel.js",
"locator/devtools.js"
],
"all_frames": true
}
]
}