Inspect and view changes in BugShot 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": "BugShot",
"version": "1.2.4",
"description": "BugShot is an easy-to-use tool to track the bugs on your projects.",
"icons": {
"16": "./assets/extension_icons/icon_16x16.png",
"32": "./assets/extension_icons/icon_32x32.png",
"48": "./assets/extension_icons/icon_48x48.png",
"96": "./assets/extension_icons/icon_96x96.png",
"128": "./assets/extension_icons/icon_128x128.png",
"256": "./assets/extension_icons/icon_256x256.png"
},
"permissions": [
"activeTab",
"tabs",
"storage",
"scripting"
],
"content_scripts": [
{
"matches": [
"https://*.bugshot.de/*"
],
"js": [
"misc-script.js"
]
}
],
"host_permissions": [
"*://*/*",
"<all_urls>"
],
"action": {
"default_popup": "./popup/index.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"assets/*",
"content/*"
],
"matches": [
"*://*/*",
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}