Inspect and view changes in OZZI: IOC Search 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": "OZZI: IOC Search",
"description": "Search standard IOCs through common OSINT platforms",
"version": "2.1.1",
"author": "mcortt",
"icons": {
"48": "icon.png"
},
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "OZZI: IOC Search"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"storage",
"contextMenus"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Open popup search"
}
},
"background": {
"scripts": [
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "ozzi@iocsearch"
}
}
}