Inspect and view changes in GPT Guardian 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": "GPT Guardian",
"version": "1.0.1.2",
"manifest_version": 3,
"description": "Detects and alerts the user when possible sensitive data (credit card #, SSN, phone #, or email address) is entered into ChatGPT.",
"icons": {
"128": "icons/GPTGuardian128x128.png"
},
"action": {
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": [
"*://chat.openai.com/*",
"*://chatgpt.com/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}