{ "manifest_version": 3, "version": "1.0", "name": "my-extension", "description": "A minimum extension template. This template includes a manifest file.", "author": "Your Name", "permissions": [ "storage" ], "host_permissions": [ "http://localhost:5000/*" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' http://localhost:5000" }, "content_scripts": [ { "matches": ["*://*/*"], "js": ["src/borderify.js"] } ] }