Like+
Get more friends, instantly.
What is Like+?
Like+ is a Chrome extension developed by Clément Walter, and its main feature is "Get more friends, instantly.".
Extension Screenshots
Download Like+ Extension CRX File
Download Like+ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Like+ |
ID | kdganehgjojfinlcadhemeijollmlnbf |
Official URL | https://chromewebstore.google.com/detail/like+/kdganehgjojfinlcadhemeijollmlnbf |
Description | Get more friends, instantly. |
File Size | 917 KB |
Installation Count | 87 |
Current Version | 0.6 |
Last Updated | 2019-01-02 |
Publish Date | 2019-01-02 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Clément Walter |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ClementWalter/like-plus |
Supported Languages | 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" ] } |