Like Remover

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

Like Remover là gì?

Like Remover là một tiện ích mở rộng Chrome được phát triển bởi treehousestartupcrew, và tính năng chính của nó là "An extension that removes all like/retweet/favorite counters. Because you are worth more.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Like Remover

Tải xuống các tệp mở rộng Like Remover dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Like Remover Like Remover
ID jmcmolmdiipljbgndfdbakaejgddmhjn
URL Chính Thức https://chromewebstore.google.com/detail/like-remover/jmcmolmdiipljbgndfdbakaejgddmhjn
Mô tả An extension that removes all like/retweet/favorite counters. Because you are worth more.
Kích Thước Tệp 6.29 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-10-03
Ngày Phát Hành 2015-10-03
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển treehousestartupcrew
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}