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": "Sora Prompt Assistant", "short_name": "SoraPrompt", "version": "1.0.3", "minimum_chrome_version": "114", "description": "Refine messy text into clear, pro-level prompts for Sora in 1 second.", "action": { "default_title": "Sora Prompt Assistant", "default_popup": "src\/popup\/index.html" }, "background": { "service_worker": "assets\/serviceWorker.js", "type": "module" }, "side_panel": { "default_path": "src\/sidepanel\/index.html" }, "permissions": [ "storage", "sidePanel", "activeTab", "tabs", "scripting" ], "host_permissions": [ "https:\/\/sora.chatgpt.com\/*", "http:\/\/localhost:3000\/*", "http:\/\/localhost:8787\/*", "https:\/\/sora-prompt.site\/*", "https:\/\/www.sora-prompt.site\/*" ], "externally_connectable": { "matches": [ "http:\/\/localhost:3000\/*", "https:\/\/sora-prompt.site\/*", "https:\/\/www.sora-prompt.site\/*" ] }, "icons": { "128": "images\/logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/sora.chatgpt.com\/*" ], "js": [ "assets\/contentScript.js" ], "css": [ "assets\/contentScript.css" ], "run_at": "document_idle" } ], "commands": { "toggle-sidepanel": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "Command+Shift+K" }, "description": "Open side panel" } }, "web_accessible_resources": [ { "resources": [ "images\/logo.png" ], "matches": [ "<all_urls>" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } }