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 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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"
]
} | |