├── .gitignore ├── LICENSE ├── README.md ├── assets ├── 128.png ├── 16.png ├── 48.png ├── themes.json └── themes │ ├── midnight-dusk.png │ ├── nyaa-dark.png │ └── quicknovel.png ├── background ├── commentsNotifier.js ├── eventListeners.js ├── torrentsNotifier.js └── utils.js ├── foreground ├── addExtensionHelp.js ├── addSettings.js ├── excludeTags.js ├── followTorrent.js ├── init.js ├── mentionUser.js ├── newTorrentAnouncer.js ├── notifications.js ├── nyaaDeadTorrents.js ├── nyaaTagUser.js ├── nyaaUserBlock.js └── removeNotif.js ├── jquery-3.5.1.min.js ├── loader.js ├── manifest.json ├── style.css └── themeLoader.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/README.md -------------------------------------------------------------------------------- /assets/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/assets/128.png -------------------------------------------------------------------------------- /assets/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/assets/16.png -------------------------------------------------------------------------------- /assets/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/assets/48.png -------------------------------------------------------------------------------- /assets/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/assets/themes.json -------------------------------------------------------------------------------- /assets/themes/midnight-dusk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/assets/themes/midnight-dusk.png -------------------------------------------------------------------------------- /assets/themes/nyaa-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/assets/themes/nyaa-dark.png -------------------------------------------------------------------------------- /assets/themes/quicknovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/assets/themes/quicknovel.png -------------------------------------------------------------------------------- /background/commentsNotifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/background/commentsNotifier.js -------------------------------------------------------------------------------- /background/eventListeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/background/eventListeners.js -------------------------------------------------------------------------------- /background/torrentsNotifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/background/torrentsNotifier.js -------------------------------------------------------------------------------- /background/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/background/utils.js -------------------------------------------------------------------------------- /foreground/addExtensionHelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/addExtensionHelp.js -------------------------------------------------------------------------------- /foreground/addSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/addSettings.js -------------------------------------------------------------------------------- /foreground/excludeTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/excludeTags.js -------------------------------------------------------------------------------- /foreground/followTorrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/followTorrent.js -------------------------------------------------------------------------------- /foreground/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/init.js -------------------------------------------------------------------------------- /foreground/mentionUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/mentionUser.js -------------------------------------------------------------------------------- /foreground/newTorrentAnouncer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/newTorrentAnouncer.js -------------------------------------------------------------------------------- /foreground/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/notifications.js -------------------------------------------------------------------------------- /foreground/nyaaDeadTorrents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/nyaaDeadTorrents.js -------------------------------------------------------------------------------- /foreground/nyaaTagUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/nyaaTagUser.js -------------------------------------------------------------------------------- /foreground/nyaaUserBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/nyaaUserBlock.js -------------------------------------------------------------------------------- /foreground/removeNotif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/foreground/removeNotif.js -------------------------------------------------------------------------------- /jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/loader.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/manifest.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/style.css -------------------------------------------------------------------------------- /themeLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjixWasTaken/Nyaa-Utility/HEAD/themeLoader.js --------------------------------------------------------------------------------