Like Remover

An extension that removes all like/retweet/favorite counters. Because you are worth more.

What is Like Remover?

Like Remover is a Chrome extension developed by treehousestartupcrew, and its main feature is "An extension that removes all like/retweet/favorite counters. Because you are worth more.".

Extension Screenshots

screenshot

Download Like Remover Extension CRX File

Download Like Remover extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension removes the likes/retweet/follower counters from sites like twitter, facebook, and instagram. We do this because you are worth more than the number of likes on the page and you are loved beyond what people tell you.                    

Extension Basic Information

Name Like Remover Like Remover
ID jmcmolmdiipljbgndfdbakaejgddmhjn
Official URL https://chromewebstore.google.com/detail/like-remover/jmcmolmdiipljbgndfdbakaejgddmhjn
Description An extension that removes all like/retweet/favorite counters. Because you are worth more.
File Size 6.29 KB
Installation Count 46
Current Version 1.0
Last Updated 2015-10-03
Publish Date 2015-10-03
Rating 3.00/5 Total 2 Ratings
Developer treehousestartupcrew
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Like Remover",
    "version": "1.0",
    "description": "An extension that removes all like\/retweet\/favorite counters. Because you are worth more.",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "hide_facebook_likes.js"
            ]
        },
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "hide_twitter_numbers.js"
            ]
        },
        {
            "matches": [
                "*:\/\/instagram.com\/*"
            ],
            "js": [
                "hide_insta_likes.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}