├── .gitignore ├── LICENSE ├── Methods.md ├── README.md ├── numberhack ├── background.js ├── code.js ├── icons │ ├── favicon-1.png │ ├── favicon-2.png │ ├── favicon-3.png │ ├── favicon-4.png │ ├── favicon-5.png │ └── favicon-6.png ├── inject.js ├── manifest.json └── readme.md ├── rehack ├── code │ └── main.js ├── icons │ ├── 128.png │ ├── 16.png │ ├── 32.png │ └── 96.png ├── injector │ ├── background.html │ ├── background.js │ └── config.json ├── libs │ ├── jquery.js │ ├── katex.js │ └── logging.js ├── manifest.json ├── misc │ ├── devtools.js │ └── script.user.js └── readme.md ├── template ├── code │ ├── example.js │ └── main.js ├── injector │ ├── background.html │ ├── background.js │ └── config.json ├── libs │ ├── jquery.js │ ├── katex.js │ └── logging.js ├── manifest.json ├── misc │ ├── devtools.js │ └── script.user.js └── readme.md └── uchihack ├── background.js ├── code ├── b2t.js └── card.js ├── icons ├── 16.png ├── 192.png ├── 32.png └── 96.png ├── inject.js ├── injector ├── background.html ├── background.js └── config.json ├── libs ├── jquery.js ├── katex.js └── logging.js ├── manifest.json ├── misc ├── devtools.js └── script.user.js └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/LICENSE -------------------------------------------------------------------------------- /Methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/Methods.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/README.md -------------------------------------------------------------------------------- /numberhack/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/background.js -------------------------------------------------------------------------------- /numberhack/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/code.js -------------------------------------------------------------------------------- /numberhack/icons/favicon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/icons/favicon-1.png -------------------------------------------------------------------------------- /numberhack/icons/favicon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/icons/favicon-2.png -------------------------------------------------------------------------------- /numberhack/icons/favicon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/icons/favicon-3.png -------------------------------------------------------------------------------- /numberhack/icons/favicon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/icons/favicon-4.png -------------------------------------------------------------------------------- /numberhack/icons/favicon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/icons/favicon-5.png -------------------------------------------------------------------------------- /numberhack/icons/favicon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/icons/favicon-6.png -------------------------------------------------------------------------------- /numberhack/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/inject.js -------------------------------------------------------------------------------- /numberhack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/manifest.json -------------------------------------------------------------------------------- /numberhack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/numberhack/readme.md -------------------------------------------------------------------------------- /rehack/code/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/code/main.js -------------------------------------------------------------------------------- /rehack/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/icons/128.png -------------------------------------------------------------------------------- /rehack/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/icons/16.png -------------------------------------------------------------------------------- /rehack/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/icons/32.png -------------------------------------------------------------------------------- /rehack/icons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/icons/96.png -------------------------------------------------------------------------------- /rehack/injector/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/injector/background.html -------------------------------------------------------------------------------- /rehack/injector/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/injector/background.js -------------------------------------------------------------------------------- /rehack/injector/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/injector/config.json -------------------------------------------------------------------------------- /rehack/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/libs/jquery.js -------------------------------------------------------------------------------- /rehack/libs/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/libs/katex.js -------------------------------------------------------------------------------- /rehack/libs/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/libs/logging.js -------------------------------------------------------------------------------- /rehack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/manifest.json -------------------------------------------------------------------------------- /rehack/misc/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/misc/devtools.js -------------------------------------------------------------------------------- /rehack/misc/script.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/misc/script.user.js -------------------------------------------------------------------------------- /rehack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/rehack/readme.md -------------------------------------------------------------------------------- /template/code/example.js: -------------------------------------------------------------------------------- 1 | l_info(`Второй скрипт!`); -------------------------------------------------------------------------------- /template/code/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/code/main.js -------------------------------------------------------------------------------- /template/injector/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/injector/background.html -------------------------------------------------------------------------------- /template/injector/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/injector/background.js -------------------------------------------------------------------------------- /template/injector/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/injector/config.json -------------------------------------------------------------------------------- /template/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/libs/jquery.js -------------------------------------------------------------------------------- /template/libs/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/libs/katex.js -------------------------------------------------------------------------------- /template/libs/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/libs/logging.js -------------------------------------------------------------------------------- /template/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/manifest.json -------------------------------------------------------------------------------- /template/misc/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/misc/devtools.js -------------------------------------------------------------------------------- /template/misc/script.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/misc/script.user.js -------------------------------------------------------------------------------- /template/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/template/readme.md -------------------------------------------------------------------------------- /uchihack/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/background.js -------------------------------------------------------------------------------- /uchihack/code/b2t.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/code/b2t.js -------------------------------------------------------------------------------- /uchihack/code/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/code/card.js -------------------------------------------------------------------------------- /uchihack/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/icons/16.png -------------------------------------------------------------------------------- /uchihack/icons/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/icons/192.png -------------------------------------------------------------------------------- /uchihack/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/icons/32.png -------------------------------------------------------------------------------- /uchihack/icons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/icons/96.png -------------------------------------------------------------------------------- /uchihack/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/inject.js -------------------------------------------------------------------------------- /uchihack/injector/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/injector/background.html -------------------------------------------------------------------------------- /uchihack/injector/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/injector/background.js -------------------------------------------------------------------------------- /uchihack/injector/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/injector/config.json -------------------------------------------------------------------------------- /uchihack/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/libs/jquery.js -------------------------------------------------------------------------------- /uchihack/libs/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/libs/katex.js -------------------------------------------------------------------------------- /uchihack/libs/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/libs/logging.js -------------------------------------------------------------------------------- /uchihack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/manifest.json -------------------------------------------------------------------------------- /uchihack/misc/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/misc/devtools.js -------------------------------------------------------------------------------- /uchihack/misc/script.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/misc/script.user.js -------------------------------------------------------------------------------- /uchihack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAirBlow/HackPack/HEAD/uchihack/readme.md --------------------------------------------------------------------------------