Sidewalk.Chat
Ever wonder what other people are thinking looking at the same web page as you? Now you can find out! Chat with people on the…
Τι είναι το Sidewalk.Chat;
Το Sidewalk.Chat είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sidewalk.chat, και η κύρια λειτουργία του είναι "Ever wonder what other people are thinking looking at the same web page as you? Now you can find out! Chat with people on the…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Sidewalk.Chat
Λήψη αρχείων επέκτασης Sidewalk.Chat σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Ever wonder what other people are thinking looking at the same web page as you? Now you can find out! Chat with people on the same website anonymously. You can find people specifically looking at the same page as you, or just talk to everyone looking at the same website as a whole. Find friends on the web in a whole new way! This app is currently in early stages of development. Please stay tuned for more features and stability updates! **** Latest as of version 0.8 **** Huge UI and logic rewrite! This is the first step toward our v1! *********************************
Βασικές Πληροφορίες Επέκτασης
Όνομα | Sidewalk.Chat |
ID | denbpdkchnadclbjgpdgaclebnghkfna |
Επίσημο URL | https://chromewebstore.google.com/detail/sidewalkchat/denbpdkchnadclbjgpdgaclebnghkfna |
Περιγραφή | Ever wonder what other people are thinking looking at the same web page as you? Now you can find out! Chat with people on the… |
Μέγεθος Αρχείου | 3.52 MB |
Αριθμός Εγκαταστάσεων | 7,959 |
Τρέχουσα Έκδοση | 0.8.6 |
Τελευταία Ενημέρωση | 2024-02-19 |
Ημερομηνία Δημοσίευσης | 2020-07-04 |
Αξιολόγηση | 5.00/5 Συνολικά 13 Αξιολογήσεις |
Προγραμματιστής | sidewalk.chat |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://sidewalk.chat/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://sidewalk.chat/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://sidewalk.chat/privacy-policy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sidewalk.Chat", "version": "0.8.6", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "assets\/css\/inPageStyles.css" ], "js": [ "onPageAlert.js" ] } ], "permissions": [ "activeTab", "storage", "alarms", "tabs" ], "action": { "default_popup": "views\/popup.html", "default_icon": { "16": "assets\/img\/sidewalkchatArtboard116.png", "32": "assets\/img\/sidewalkchatArtboard132.png", "48": "assets\/img\/sidewalkchatArtboard164.png", "128": "assets\/img\/sidewalkchatArtboard1128.png" } }, "options_page": "views\/settings.html", "icons": { "16": "assets\/img\/sidewalkchatArtboard116.png", "32": "assets\/img\/sidewalkchatArtboard132.png", "48": "assets\/img\/sidewalkchatArtboard164.png", "128": "assets\/img\/sidewalkchatArtboard1128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Alt+S" } } } } |