Upmeet extension
L'extension permet à Upmeet de rejoindre vos réunions en un clic.
Co to jest Upmeet extension?
Upmeet extension to rozszerzenie Chrome opracowane przez https://upmeet.ai, a jego główną funkcją jest „L'extension permet à Upmeet de rejoindre vos réunions en un clic.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Upmeet extension
Pobierz pliki rozszerzeń Upmeet extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
L'extension chrome Upmeet vous permet d'ajouter Upmeet à vos réunions en un clic. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | apehoplkfhmkhfgkbebhjdhldicfglpg |
| Oficjalny URL | https://chromewebstore.google.com/detail/upmeet-extension/apehoplkfhmkhfgkbebhjdhldicfglpg |
| Opis | L'extension permet à Upmeet de rejoindre vos réunions en un clic. |
| Rozmiar pliku | 393 KB |
| Liczba instalacji | 330 |
| Aktualna Wersja | 1.0.0 |
| Ostatnia Aktualizacja | 2023-08-24 |
| Data Publikacji | 2023-08-24 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | https://upmeet.ai |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://upmeet.ai |
| Adres URL Strony Pomocy | https://upmeet.ai |
| Obsługiwane Języki | fr |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Upmeet extension",
"version": "1.0.0",
"description": "L'extension permet \u00e0 Upmeet de rejoindre vos r\u00e9unions en un clic.",
"icons": {
"16": "logo16.png",
"48": "logo48.png",
"128": "logo128.png"
},
"background": {
"service_worker": ".\/static\/js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*",
"https:\/\/*.zoom.us\/wc\/*",
"https:\/\/teams.microsoft.com\/l\/meetup-join\/*"
],
"js": [
".\/static\/js\/content.js"
],
"css": [
".\/static\/css\/tailwind.output.css"
]
}
],
"action": {
"default_popup": "index.html"
},
"permissions": [
"storage",
"tabs"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https:\/\/cdn.jsdelivr.net;"
}
} | |