Like Remover

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

Like Removerคืออะไร?

Like Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย treehousestartupcrew และคุณลักษณะหลักของมันคือ "An extension that removes all like/retweet/favorite counters. Because you are worth more."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Like Remover

ดาวน์โหลดไฟล์ส่วนขยาย Like Remover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Like Remover Like Remover
ID jmcmolmdiipljbgndfdbakaejgddmhjn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/like-remover/jmcmolmdiipljbgndfdbakaejgddmhjn
คำอธิบาย An extension that removes all like/retweet/favorite counters. Because you are worth more.
ขนาดไฟล์ 6.29 KB
จำนวนการติดตั้ง 46
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-10-03
วันที่เผยแพร่ 2015-10-03
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา treehousestartupcrew
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}