shubhamgoyal

manifest.json

Jun 23rd, 2025
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. {
  2. "manifest_version": 3,
  3. "name": "Auto ChatGPT Dual-Prompt",
  4. "version": "1.3",
  5. "description": "Automatically runs two prompts on ChatGPT/chatgpt.com in any tab.",
  6. "permissions": ["scripting","activeTab"],
  7. "host_permissions": [
  8. "https://*.openai.com/*",
  9. "https://chatgpt.com/*",
  10. "https://*.chatgpt.com/*"
  11. ],
  12. "content_scripts": [
  13. {
  14. "matches": [
  15. "https://*.openai.com/*",
  16. "https://chatgpt.com/*",
  17. "https://*.chatgpt.com/*"
  18. ],
  19. "js": ["content.js"],
  20. "run_at": "document_idle"
  21. }
  22. ]
  23. }
Advertisement
Add Comment
Please, Sign In to add comment