Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Code Verify",
"version": "4.1.0",
"default_locale": "en",
"description": "An extension to verify the code running in your browser matches what was published.",
"action": {
"default_title": "Code Verify",
"default_icon": {
"32": "default_32.png",
"48": "default_48.png",
"64": "default_64.png",
"128": "default_128.png"
}
},
"icons": {
"32": "default_32.png",
"48": "default_48.png",
"64": "default_64.png",
"128": "default_128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.messenger.com\/*"
],
"all_frames": true,
"js": [
"contentMSGR.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"all_frames": true,
"match_about_blank": true,
"js": [
"contentFB.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/*.instagram.com\/*"
],
"all_frames": true,
"match_about_blank": true,
"js": [
"contentIG.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/*.whatsapp.com\/*"
],
"all_frames": true,
"match_about_blank": true,
"js": [
"contentWA.js"
],
"run_at": "document_start"
}
],
"permissions": [
"webRequest",
"storage"
],
"host_permissions": [
"https:\/\/*.privacy-auditability.cloudflare.com\/",
"https:\/\/static.xx.fbcdn.net\/",
"https:\/\/static.cdninstagram.com\/",
"https:\/\/static.whatsapp.net\/",
"*:\/\/*.messenger.com\/*",
"*:\/\/*.facebook.com\/*",
"*:\/\/*.instagram.com\/*",
"*:\/\/*.whatsapp.com\/*"
]
}