Inspect and view changes in Skypher 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",
"name": "Skypher",
"version": "3.0.1",
"description": "Automate security questionnaires response and make security reviews easier",
"background": {
"service_worker": "chrome/background.js",
"type": "module"
},
"action": {
"default_icon": "images/skypher.png"
},
"icons": {
"16": "images/skypher_16.png",
"32": "images/skypher_32.png",
"180": "images/skypher_180.png",
"192": "images/skypher_192.png",
"512": "images/skypher_512.png"
},
"manifest_version": 3,
"permissions": [
"activeTab",
"scripting",
"sidePanel",
"tabs"
],
"host_permissions": [
"*://*/*"
],
"side_panel": {
"default_path": "index.html"
},
"web_accessible_resources": [
{
"resources": [
"*.html",
"*.js",
"http://localhost:3000/*"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
]
}