├── .github └── workflows │ └── main.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── changelog.md ├── create_release.py ├── lang ├── en.json ├── es.json ├── ja.json └── ko.json ├── make_post.py ├── module.json ├── scripts ├── helpers.js ├── main.js └── smartTarget.js ├── smarttarget.lock ├── translate-all.js └── wiki ├── smartTarget.jpg └── targetoptions.jpg /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/changelog.md -------------------------------------------------------------------------------- /create_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/create_release.py -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/lang/es.json -------------------------------------------------------------------------------- /lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/lang/ja.json -------------------------------------------------------------------------------- /lang/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/lang/ko.json -------------------------------------------------------------------------------- /make_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/make_post.py -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/module.json -------------------------------------------------------------------------------- /scripts/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/scripts/helpers.js -------------------------------------------------------------------------------- /scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/scripts/main.js -------------------------------------------------------------------------------- /scripts/smartTarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/scripts/smartTarget.js -------------------------------------------------------------------------------- /smarttarget.lock: -------------------------------------------------------------------------------- 1 | 🔒 -------------------------------------------------------------------------------- /translate-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/translate-all.js -------------------------------------------------------------------------------- /wiki/smartTarget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/wiki/smartTarget.jpg -------------------------------------------------------------------------------- /wiki/targetoptions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Smart-Target/HEAD/wiki/targetoptions.jpg --------------------------------------------------------------------------------