TSR Wait Skipper

TSR Wait Skipper

Skip past the 10 second timer on TheSimsResource.com and auto download TheSimsCatalog.com mods.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TSR Wait Skipper",
  "version": "1.3",
  "description": "Skip past the 10 second timer on TheSimsResource.com and auto download TheSimsCatalog.com mods.",
  "author": "lord_voldemort",
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.thesimsresource.com/*",
        "*://thesimscatalog.com/sims4/downloads/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "*://*.thesimsresource.com/*",
    "*://thesimscatalog.com/sims4/downloads/*"
  ]
}