LikeFree

Hide likes on Instagram and Facebook so that you can focus on the bigger picture. Express yourself freely.

Was ist LikeFree?

LikeFree ist eine Chrome-Erweiterung, die von Vivek Bhookya entwickelt wurde, und ihr Hauptmerkmal ist "Hide likes on Instagram and Facebook so that you can focus on the bigger picture. Express yourself freely.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

LikeFree-Erweiterungs-CRX-Datei herunterladen

Laden Sie LikeFree-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        ---
April 7, 2021 updates:
√ Support for new Facebook UI. If your Facebook still shows reactions, please email me.
Enjoy
❤️
---

Before posting on Instagram or Facebook, many go through a moment of hesitation — "Is this a clever caption? Do I look good? Did I use the right filter? Will I get more likes than before on this post? What will everyone think when they see this?" 

This second guessing traps us in a never-ending cycle where our true desire of what we honestly want to post is overpowered by the pressure to select the pictures that will garner the most likes. Like a drug, the increasing “like” number on our posts reinforces this behavior. 

LikeFree will hide the number of likes. video views, and reactions when you use the web versions of Instagram and Facebook so that you can stop associating likes with certain content and instead view photos and videos as they truly are. LikeFree shifts your focus from, "How will others feel about this post?" to, "How do I feel about this post?"

Take a picture. If you like it, post it. Write a status. If it sounds good to you, post it. It's time to stop thinking about what others will think. Put those thoughts aside. Don't worry about what others think of your social profiles, your posts, or how your life looks. Express yourself freely. 

---

Simply install the extension and you're set! If you find that likes still show up while browsing, simply click the LikeFree heart!
Some elements will continue to remain visible even after pressing the LikeFree heart. These elements behave differently than what is affected and are more difficult to interact with when using the current algorithm. Don't worry, just continue to focus on the important things.

Enjoy :)

–––
Source code (MIT licensed): https://github.com/mrvivacious/LikeFree
More projects at https://mrvivacio.us
–––
Also check out:
💛PorNo! (Beta): Redirect visits to adult websites to websites of positive/constructive/wholesome/etc content. Experimental tool that attempts to convert the associations of pleasure with adult materials into associations of pleasure with constructive, forward-moving materials in the mind. Intended to serve those who struggle with adult materials/wish to reduce their porn usage, but can be used by all.

💚SpeedDial: Chrome extension that provides one's state's support/emergency phone numbers conveniently from the omnibox. Additionally, one may call whichever hotline s/he needs immediately within the extension itself for free.                    

Grundlegende Informationen zur Erweiterung

Name LikeFree LikeFree
ID hejgbghjhjiilikhjinpbooockoiipek
Offizielle URL https://chromewebstore.google.com/detail/likefree/hejgbghjhjiilikhjinpbooockoiipek
Beschreibung Hide likes on Instagram and Facebook so that you can focus on the bigger picture. Express yourself freely.
Dateigröße 236 KB
Installationsanzahl 893
Aktuelle Version 1.0
Letztes Update 2021-05-16
Veröffentlichungsdatum 2019-09-14
Bewertung 4.20/5 Insgesamt 111 Bewertungen
Entwickler Vivek Bhookya
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://medium.com/@vivekbhookya/likefree-40fa694cab3f
Hilfeseite URL https://github.com/mrvivacious/LikeFree/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LikeFree",
    "description": "Hide likes on Instagram and Facebook so that you can focus on the bigger picture. Express yourself freely.",
    "version": "1.0",
    "author": "Vivek Bhookya",
    "browser_action": {
        "default_icon": "icons\/heart-icon-48.png",
        "default_popup": "popup.html",
        "default_title": "LikeFree"
    },
    "icons": {
        "16": "icons\/heart-icon-16.png",
        "48": "icons\/heart-icon-48.png",
        "128": "icons\/heart-icon-128.png"
    },
    "background": {
        "scripts": [
            "MagicalMessages.js",
            "likefree.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*",
                "https:\/\/*.facebook.com\/*"
            ],
            "js": [
                "MagicalMessages.js",
                "likefree.js"
            ],
            "run_at": "document_end"
        }
    ]
}