manifest.json 370 B

123456789101112131415161718
  1. {
  2. "manifest_version": 3,
  3. "name": "Turnstile Patcher",
  4. "version": "2.1",
  5. "content_scripts": [
  6. {
  7. "js": [
  8. "./script.js"
  9. ],
  10. "matches": [
  11. "<all_urls>"
  12. ],
  13. "run_at": "document_start",
  14. "all_frames": true,
  15. "world": "MAIN"
  16. }
  17. ]
  18. }