Like+
Get more friends, instantly.
Co to jest Like+?
Like+ to rozszerzenie Chrome opracowane przez Clément Walter, a jego główną funkcją jest „Get more friends, instantly.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Like+
Pobierz pliki rozszerzeń Like+ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Like+ |
ID | kdganehgjojfinlcadhemeijollmlnbf |
Oficjalny URL | https://chromewebstore.google.com/detail/like+/kdganehgjojfinlcadhemeijollmlnbf |
Opis | Get more friends, instantly. |
Rozmiar pliku | 917 KB |
Liczba instalacji | 87 |
Aktualna Wersja | 0.6 |
Ostatnia Aktualizacja | 2019-01-02 |
Data Publikacji | 2019-01-02 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Clément Walter |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ClementWalter/like-plus |
Obsługiwane Języki | 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" ] } |