Endless Tinder Liker
This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).
Τι είναι το Endless Tinder Liker;
Το Endless Tinder Liker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://namata.ru, και η κύρια λειτουργία του είναι "This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Endless Tinder Liker
Λήψη αρχείων επέκτασης Endless Tinder Liker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them). Just click on the extension icon and the “Run” button to start putting likes and the “Stop” button to finish it.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | gciilpifakooegcdimdegnljlncclink |
Επίσημο URL | https://chrome.google.com/webstore/detail/endless-tinder-liker/gciilpifakooegcdimdegnljlncclink |
Περιγραφή | This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them). |
Μέγεθος Αρχείου | 252 KB |
Αριθμός Εγκαταστάσεων | 834 |
Τρέχουσα Έκδοση | 1.6 |
Τελευταία Ενημέρωση | 2021-09-02 |
Ημερομηνία Δημοσίευσης | 2020-05-04 |
Αξιολόγηση | 3.86/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | http://namata.ru |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://namata.ru/extensions/endlesstinderliker |
Διεύθυνση URL της Σελίδας Βοήθειας | https://namata.ru/support/thanksforinstall |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Endless Tinder Liker", "description": "This extension allows you to start and stop the endless supply of likes on Tinder (until you run out of them).", "version": "1.6", "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/tinder.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "*:\/\/tinder.com\/*" ] } |