Like+
Get more friends, instantly.
什麼是Like+?
Like+是由Clément Walter開發的Chrome擴展程式,該擴展的主要功能是“Get more friends, instantly.”。
擴展截圖
下載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+ |
ID | kdganehgjojfinlcadhemeijollmlnbf |
官方網址 | 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 |
電子郵箱 | [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" ] } |