| @@ -14,16 +14,22 @@ | |||||
| "https://*.nationstates.net/*" | "https://*.nationstates.net/*" | ||||
| ], | ], | ||||
| "content_scripts": [ | "content_scripts": [ | ||||
| { | |||||
| "matches": ["https://www.nationstates.net/*"], | |||||
| "exclude_matches": ["https://forum.nationstates.net/*", "https://www.nationstates.net/template-overall=none/*"], | |||||
| "run_at": "document_idle", | |||||
| "js": ["scripts/buttons.js"] | |||||
| }, | |||||
| { | { | ||||
| "matches": ["https://www.nationstates.net/*"], | "matches": ["https://www.nationstates.net/*"], | ||||
| "exclude_matches": ["https://forum.nationstates.net/*"], | "exclude_matches": ["https://forum.nationstates.net/*"], | ||||
| "run_at": "document_end", | |||||
| "js": ["scripts/buttons.js", "scripts/main.js"] | |||||
| "run_at": "document_idle", | |||||
| "js": ["scripts/helpers.js", "scripts/main.js"] | |||||
| }, | }, | ||||
| { | { | ||||
| "matches": ["https://www.nationstates.net/page=blank/raspberry=settings"], | "matches": ["https://www.nationstates.net/page=blank/raspberry=settings"], | ||||
| "exclude_matches": ["https://forum.nationstates.net/*"], | "exclude_matches": ["https://forum.nationstates.net/*"], | ||||
| "run_at": "document_end", | |||||
| "run_at": "document_idle", | |||||
| "js": ["scripts/settings.js"] | "js": ["scripts/settings.js"] | ||||
| } | } | ||||
| ] | ] | ||||