Like+
Get more friends, instantly.
Cos'è Like+?
Like+ è un'estensione di Chrome sviluppata da Clément Walter, e la sua funzione principale è "Get more friends, instantly.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Like+
Scarica i file di estensione Like+ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Like+ |
ID | kdganehgjojfinlcadhemeijollmlnbf |
URL Ufficiale | https://chromewebstore.google.com/detail/like+/kdganehgjojfinlcadhemeijollmlnbf |
Descrizione | Get more friends, instantly. |
Dimensione del File | 917 KB |
Conteggio Installazioni | 87 |
Versione Corrente | 0.6 |
Ultimo Aggiornamento | 2019-01-02 |
Data di Pubblicazione | 2019-01-02 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Clément Walter |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ClementWalter/like-plus |
Lingue Supportate | 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" ] } |