Like+
Get more friends, instantly.
Like+คืออะไร?
Like+ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Clément Walter และคุณลักษณะหลักของมันคือ "Get more friends, instantly."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Like+
ดาวน์โหลดไฟล์ส่วนขยาย 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"
]
} | |