Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPT Privacy: Anonymize your Chat GPT prompts", "version": "0.0.1.5", "description": "Anonymize your Chat GPT prompts and safeguard your privacy. Automatically swap your prompts data with custom placeholders.", "action": { "default_popup": "dist\/popup.html", "default_icon": { "16": "dist\/images\/icon16.png", "48": "dist\/images\/icon48.png", "128": "dist\/images\/icon128.png" } }, "permissions": [ "activeTab", "storage", "contextMenus", "tabs", "scripting" ], "host_permissions": [ "*:\/\/chatgpt.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/chatgpt.com\/*" ], "js": [ "dist\/content.js" ] } ], "background": { "service_worker": "dist\/background.js" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "options_ui": { "page": "dist\/options.html", "open_in_tab": true }, "icons": { "16": "dist\/images\/icon16.png", "48": "dist\/images\/icon48.png", "128": "dist\/images\/icon128.png" } }