Skip to content

Commit

Permalink
Add more apps support
Browse files Browse the repository at this point in the history
  • Loading branch information
shatyuka committed Nov 10, 2021
1 parent 8c9d2a8 commit d60bee2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ An Android Xposed module to remove sponsored messages of Telegram

- **Official** org.telegram.messenger
- **Official** org.telegram.messenger.web
- **Official** org.telegram.messenger.beta
- **NekoX** nekox.messenger
- **Nekogram** tw.nekomimi.nekogram
- **Plus Messenger** org.telegram.plus
- **iMe Messenger** com.iMe.android
- **BGram** org.telegram.BifToGram

## License

Expand Down
5 changes: 4 additions & 1 deletion app/src/main/java/com/shatyuka/killergram/MainHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ public class MainHook implements IXposedHookLoadPackage {
public final static List<String> hookPackages = Arrays.asList(
"org.telegram.messenger",
"org.telegram.messenger.web",
"org.telegram.messenger.beta",
"nekox.messenger",
"tw.nekomimi.nekogram",
"org.telegram.plus");
"org.telegram.plus",
"com.iMe.android",
"org.telegram.BifToGram");

@Override
public void handleLoadPackage(final XC_LoadPackage.LoadPackageParam lpparam) {
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/values/arrays.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
<string-array name="xposedscope">
<item>org.telegram.messenger</item>
<item>org.telegram.messenger.web</item>
<item>org.telegram.messenger.beta</item>
<item>nekox.messenger</item>
<item>tw.nekomimi.nekogram</item>
<item>org.telegram.plus</item>
<item>com.iMe.android</item>
<item>org.telegram.BifToGram</item>
</string-array>
</resources>

0 comments on commit d60bee2

Please sign in to comment.