Skip to content

Commit

Permalink
Merge pull request #30 from AvengineeringCreates/master
Browse files Browse the repository at this point in the history
Added toggle for unread message count
  • Loading branch information
Kalbra authored Dec 29, 2024
2 parents 533440a + 7f9fed8 commit 7004883
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,27 @@ for a better and healthier user experience. This drastically reduces screentime.

## Features
### Reel feed deactivation
With this feature you can deativate the reel feed. So you never spend hours scrolling through the feed again wasting your time.
With this feature you can deactivate the reel feed. So you never spend hours scrolling through the feed again wasting your time.
But when friends send you reels, you can only watch them. So only the best content for you.

### Only followed feed
You get constent that you are not subscribed to in your home feed? Not if you active Followed feed.
You get content that you are not subscribed to in your home feed? Not if you active Followed feed.
Then you will only be shown content that is really useful to you. The content of your followers, your friends!
You'll see how quickly you can bring yourself up to date without random content

### Explore feed deactivation
The explore feed is similar to the reel feed: addictive. so why not deactivate it? You will have more time to spend of meaningful things.
The explore feed is similar to the reel feed: addictive. So why not deactivate it? You will have more time to spend of meaningful things.

### Story strips deactivation
You don't want to spend hours swiping through stories. Then this is your feature! When deactivating the story strip you will no longer see stories at you home screen.
But you are able to see stories via the profile if you really want to see THAT story.

### Home feed deactivation
You have enough of scrolling through the home feed and don't want to use the Followed feed as well? Then you can deactivate the home feed completely.
This feature is not related to Story strips, so if you want to see only stories you can.
This feature is not related to Story strips, so if you want to see only stories you can.

### Disable message notification icon
It can be distracting to be constantly reminded of messages that you have unread. You can deactivate the red icon that shows your unread messages and interact with your friends and followers more organically.

## Limitations
The app uses the web version of instagram and their limitations.
Expand All @@ -56,7 +59,7 @@ Limitations are:
## Installation and releases
The app is only provided as APK file, which is the application format for android apps.
Download [NoReel.apk](https://github.com/Kalbra/NoReel/releases/latest/download/NoReel.apk) by clicking on it. Note that android will warn you about the app several times.
You have to ignore these warnings to be able instaling the app.
You have to ignore these warnings to be able installing the app.

The APK file must be installed manually. A tutorial how to install an APK file is linked
[here](https://www.lifewire.com/install-apk-on-android-4177185).
Expand Down
7 changes: 7 additions & 0 deletions app/src/main/assets/Injector.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,11 @@ if(for_you_switch){
following_button.click();
}
}
/** END **/

/** show_unread_message_count **/
const unread_message_count = document.querySelector('div[class="html-div xdj266r x11i5rnm xat24cr x1mh8g0r xexx8yu x4uap5 x18d9i69 xkhd6sd x14vhib7 xnwf7zb x40j3uw x1s7lred x15gyhx8 x6s0dn4 x78zum5 xmix8c7 xl56j7k x1bby3tf x16xo4sp x1yhmmig xeqyd3i xyb01ml xdn568n x13fuv20 xu3j5b3 x1q0q8m5 x26u7qi xamhcws xol2nv xlxy82 x19p7ews"]');
if(unread_message_count){
unread_message_count.style.display = "none";
}
/** END **/
5 changes: 5 additions & 0 deletions app/src/main/res/xml/preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
android:key="story_strip"
android:summary="The strip where all stories are contained at the top of the app. Does not disable stories in general."
android:defaultValue="true" />
<SwitchPreference
android:title="Show unread message count"
android:key="show_unread_message_count"
android:summary="Show the red unread message notification."
android:defaultValue="true" />
<SwitchPreference
android:title="Reel feed"
android:key="reel_feed"
Expand Down

0 comments on commit 7004883

Please sign in to comment.