Inspect and view changes in Gatewatcher CTI 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
{
"name": "Gatewatcher CTI",
"description": "Gatewatcher CTI give up-to-date context-based information on cyber threats instantly accessible from your web browser.",
"version": "1.0.4",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "index.html",
"default_icon": "gw.png"
},
"permissions": [
"activeTab",
"contextMenus",
"storage"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
],
"css": [
"styles.css"
]
}
],
"icons": {
"16": "gw.png",
"32": "gw.png",
"64": "gw.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}