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" } } } } |