A keybinding tool for defending quickly in NationStates.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

59 satır
2.0 KiB

  1. {
  2. "manifest_version": 3,
  3. "name": "Gauntlet",
  4. "version": "1.0",
  5. "description": "Defend easier (but worse than with Reliant) in NationStates.",
  6. "author": "Haku",
  7. "permissions": ["activeTab", "storage"],
  8. "host_permissions": [
  9. "https://*.nationstates.net/*"
  10. ],
  11. "content_scripts": [
  12. {
  13. "matches": ["https://www.nationstates.net/*"],
  14. "exclude_matches": ["https://forum.nationstates.net/*", "https://www.nationstates.net/template-overall=none/*", "https://www.nationstates.net/page=ajax2/*"],
  15. "run_at": "document_idle",
  16. "js": ["scripts/buttons.js"]
  17. },
  18. {
  19. "matches": ["https://www.nationstates.net/*"],
  20. "exclude_matches": ["https://forum.nationstates.net/*"],
  21. "run_at": "document_idle",
  22. "js": ["scripts/notyf.min.js"],
  23. "css": ["css/notyf.min.css"]
  24. },
  25. {
  26. "matches": ["https://www.nationstates.net/*"],
  27. "exclude_matches": ["https://forum.nationstates.net/*"],
  28. "run_at": "document_idle",
  29. "js": ["scripts/helpers.js", "scripts/main.js"]
  30. },
  31. {
  32. "matches": ["https://www.nationstates.net/page=blank/gauntlet=settings"],
  33. "exclude_matches": ["https://forum.nationstates.net/*"],
  34. "run_at": "document_idle",
  35. "js": ["scripts/settings.js"]
  36. },
  37. {
  38. "matches": ["https://www.nationstates.net/page=ajax2/*"],
  39. "exclude_matches": ["https://forum.nationstates.net/*"],
  40. "run_at": "document_idle",
  41. "js": ["scripts/ajax.js"],
  42. "css": ["css/mvp.css"]
  43. },
  44. {
  45. "matches": ["https://www.nationstates.net/template-overall=none/page=reports"],
  46. "exclude_matches": ["https://forum.nationstates.net/*"],
  47. "run_at": "document_idle",
  48. "js": ["scripts/reports.js"],
  49. "css": ["css/mvp.css"]
  50. },
  51. {
  52. "matches": ["https://www.nationstates.net/template-overall=none/region=*"],
  53. "exclude_matches": ["https://forum.nationstates.net/*"],
  54. "run_at": "document_idle",
  55. "js": ["scripts/region.js"],
  56. "css": ["css/mvp.css"]
  57. }
  58. ]
  59. }