Like Remover

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

Like Removerとは何ですか?

Like Removerはtreehousestartupcrewによって開発されたChromeの拡張機能で、その主な機能は「An extension that removes all like/retweet/favorite counters. Because you are worth more.」です。

拡張機能のスクリーンショット

screenshot

Like Remover拡張機能のCRXファイルをダウンロード

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"
    ]
}