Like+
Get more friends, instantly.
Like+ क्या है?
Like+ Clément Walter द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get more friends, instantly."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Like+ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |