A keybinding tool for defending quickly in NationStates.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 rivejä
565 B

  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/*"],
  20. "run_at": "document_end",
  21. "js": ["scripts/main.js"]
  22. }
  23. ]
  24. }