A keybinding tool for defending quickly in NationStates.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

42 rindas
1.3 KiB

  1. {
  2. "manifest_version": 3,
  3. "name": "Raspberry",
  4. "version": "1.0",
  5. "description": "Defend easier in NationStates.",
  6. "author": "Haku",
  7. "icons": {
  8. "16": "icons/16.png",
  9. "48": "icons/48.png",
  10. "128": "icons/128.png"
  11. },
  12. "permissions": ["activeTab", "storage"],
  13. "host_permissions": [
  14. "https://*.nationstates.net/*"
  15. ],
  16. "content_scripts": [
  17. {
  18. "matches": ["https://www.nationstates.net/*"],
  19. "exclude_matches": ["https://forum.nationstates.net/*", "https://www.nationstates.net/template-overall=none/*", "https://www.nationstates.net/page=ajax2/*"],
  20. "run_at": "document_idle",
  21. "js": ["scripts/buttons.js"]
  22. },
  23. {
  24. "matches": ["https://www.nationstates.net/*"],
  25. "exclude_matches": ["https://forum.nationstates.net/*"],
  26. "run_at": "document_idle",
  27. "js": ["scripts/helpers.js", "scripts/main.js"]
  28. },
  29. {
  30. "matches": ["https://www.nationstates.net/page=blank/raspberry=settings"],
  31. "exclude_matches": ["https://forum.nationstates.net/*"],
  32. "run_at": "document_idle",
  33. "js": ["scripts/settings.js"]
  34. },
  35. {
  36. "matches": ["https://www.nationstates.net/page=ajax2/*"],
  37. "exclude_matches": ["https://forum.nationstates.net/*"],
  38. "run_at": "document_idle",
  39. "js": ["scripts/ajax.js"]
  40. }
  41. ]
  42. }