Like+
Get more friends, instantly.
Like+란 무엇입니까?
Like+은(는) Clément Walter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get more friends, instantly."입니다.
확장 프로그램 스크린샷
Like+ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" ] } |