Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Notplayingallday383 committed May 10, 2024
1 parent 5c029c4 commit a3d8c13
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@z1g-project/injectify",
"description": "A improved version of Sodiums Plugin Injector ready to use in all your projects.",
"version": "0.0.4",
"version": "0.1.0",
"author": "z1g Project",
"type": "module",
"main": "lib/index.cjs",
Expand Down
6 changes: 6 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ export default async function injectify() {
let plugins = await LFS(cfg.fsItem)
let frameView = cfg.whereTo
let blacklist = cfg.blacklist
if (cfg.extraLogging === true) {
console.log(frameView)
}
plugins.forEach(script => {
if (blacklist && blacklist.includes(script)) {
return
Expand Down Expand Up @@ -57,6 +60,9 @@ export default async function injectify() {
// Filer is very slow so this may take up some time. This is not suitible for injecting things such as Vencord. Read the docs for more info
let frameView = cfg.whereTo
let blacklist = cfg.blacklist
if (cfg.extraLogging === true) {
console.log(frameView)
}
plugins.forEach(script => {
if (blacklist && blacklist.includes(script)) {
return
Expand Down

0 comments on commit a3d8c13

Please sign in to comment.