Like+

Get more friends, instantly.

Like+とは何ですか?

Like+はClément Walterによって開発されたChromeの拡張機能で、その主な機能は「Get more friends, instantly.」です。

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

screenshot

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

Like+拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Summer is over, pain is deep. Holidays are over, friends did better.  FOMO. This add simply makes you have a better day while looking at your Facebook profile page. YOU'RE THE ONE.

Product log :
 - v0.1 : generate a random number of likes between 5000 and 6000
 - v0.2 : add a slider to update mood factor
 - v0.3 : add your favorite name to the like field
 - v0.4 : auto-increase the number of likes
 - v0.5 : checkbox to disable add in popup
 - v0.6 : Fix span class

Product backlog :
 - v1.0 : auto-generated comments                    

拡張機能の基本情報

名前 Like+ Like+
ID kdganehgjojfinlcadhemeijollmlnbf
公式URL https://chromewebstore.google.com/detail/like+/kdganehgjojfinlcadhemeijollmlnbf
説明 Get more friends, instantly.
ファイルサイズ 917 KB
インストール数 87
現在のバージョン 0.6
最終更新日 2019-01-02
公開日 2019-01-02
評価 5.00/5 合計 2 レビュー
開発者 Clément Walter
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/ClementWalter/like-plus
対応言語 fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Like+",
    "version": "0.6",
    "description": "Get more friends, instantly.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "like16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "like16.png",
        "128": "like128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}