Inspect and view changes in SourceTraq 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": "SourceTraq",
"short_name": "SourceTraq: Version Control Metrics",
"version": "0.1",
"description": "SourceTraq is your go-to tool for analyzing pull request trends, activities, and commit histories across multiple code repositories.",
"icons": {
"24": "/assets/icon_24.png",
"32": "/assets/icon_32.png",
"48": "/assets/icon_48.png",
"144": "/assets/icon_144.png"
},
"action": {
"default_icon": {
"24": "/assets/icon_24.png",
"32": "/assets/icon_32.png",
"48": "/assets/icon_48.png"
},
"default_title": "SourceTraq",
"default_popup": "/menu.html"
},
"commands": {
"open-sourceTraq": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Open SourceTraq"
}
},
"externally_connectable": {
"matches": [
"https://*.sourcetraq.com/*",
"http://local.sourcetraq.com/*",
"https://*.atlassian.net/*"
]
},
"background": {
"service_worker": "/background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"index.html"
],
"matches": [
"https://*.sourcetraq.com/*",
"http://local.sourcetraq.com/*"
]
},
{
"resources": [
"/assets/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"offline_enabled": true,
"permissions": [
"activeTab",
"tabs",
"storage"
],
"optional_permissions": [],
"host_permissions": [
"https://*.atlassian.net/",
"https://*.github.com/",
"https://bitbucket.org/*"
],
"optional_host_permissions": [
"http://*/",
"https://*/"
],
"author": "Shridhar"
}